brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · 61eb16b Raw
40 lines · cpp
1// RUN: %clang_cc1 %s -triple powerpc-ibm-aix-xcoff -mtocdata -emit-llvm -o - 2>&1 | FileCheck %s -check-prefixes=COMMON,ALLTOC2// RUN: %clang_cc1 %s -triple powerpc-ibm-aix-xcoff -mtocdata=n,_ZN11MyNamespace10myVariableE,_ZL1s,_ZZ4testvE7counter -emit-llvm -o - 2>&1 | FileCheck %s -check-prefixes=COMMON,TOCLIST3// RUN: %clang_cc1 %s -triple powerpc64-ibm-aix-xcoff -mtocdata -emit-llvm -o - 2>&1 | FileCheck %s -check-prefixes=COMMON,ALLTOC4// RUN: %clang_cc1 %s -triple powerpc64-ibm-aix-xcoff -mtocdata=n,_ZN11MyNamespace10myVariableE,_ZL1s,_ZZ4testvE7counter -emit-llvm -o - 2>&1 | FileCheck %s -check-prefixes=COMMON,TOCLIST5 6extern int n;7static int s = 100;8 9inline int test() {10    static int counter = 0;11    counter++;12    return counter;13}14 15int a () {16    n = test();17    return 0;18}19 20namespace MyNamespace {21    int myVariable = 10;22}23 24int b(int x) {25    using namespace MyNamespace;26    return x + myVariable;27}28 29int c(int x) {30  s += x;31  return s;32}33 34// COMMON: @n = external global i32, align 4 #035// COMMON: @_ZN11MyNamespace10myVariableE = global i32 10, align 4 #036// COMMON-NOT: @_ZL1s = internal global i32 100, align 4 #037// ALLTOC: @_ZZ4testvE7counter = linkonce_odr global i32 0, align 4 #038// TOCLIST-NOT: @_ZZ4testvE7counter = linkonce_odr global i32 0, align 4 #039// COMMON: attributes #0 = { "toc-data" }40