1 // REQUIRES: x86-registered-target 2 // RUN: %clang_cc1 -DINLINE=inline -triple x86_64-unknown-linux-gnu -o - \ 3 // RUN: -emit-interface-stubs -std=gnu89 -xc %s | \ 4 // RUN: FileCheck -check-prefix=CHECK-GNU %s 5 // RUN: %clang -DINLINE=inline -target x86_64-linux-gnu -O0 -o - -c \ 6 // RUN: -std=gnu89 -xc %s | llvm-nm - | FileCheck -check-prefix=CHECK-GNU %s 7 8 // RUN: %clang_cc1 -DINLINE="__attribute__((always_inline))" \ 9 // RUN: -triple x86_64-unknown-linux-gnu -o - -emit-interface-stubs -xc %s | \ 10 // RUN: FileCheck -check-prefix=CHECK-GNU %s 11 // RUN: %clang -DINLINE="__attribute__((always_inline))" \ 12 // RUN: -target x86_64-linux-gnu -O0 -o - -c -xc %s | \ 13 // RUN: llvm-nm - | FileCheck -check-prefix=CHECK-GNU %s 14 15 // RUN: %clang_cc1 -DINLINE=inline -triple x86_64-unknown-linux-gnu -o - \ 16 // RUN: -emit-interface-stubs -std=c99 -xc %s | \ 17 // RUN: FileCheck -check-prefix=CHECK-STD %s 18 // RUN: %clang -DINLINE=inline -target x86_64-linux-gnu -O0 -o - -c -std=c99 \ 19 // RUN: -xc %s | llvm-nm - 2>&1 | count 0 20 21 // RUN: %clang_cc1 -DINLINE="__attribute__((noinline))" \ 22 // RUN: -triple x86_64-unknown-linux-gnu -o - -emit-interface-stubs -std=c99 -xc %s | \ 23 // RUN: FileCheck -check-prefix=CHECK-NOINLINE %s 24 // RUN: %clang -DINLINE="__attribute__((noinline))" -target x86_64-linux-gnu \ 25 // RUN: -O0 -o - -c -std=c99 -xc %s | llvm-nm - 2>&1 | \ 26 // RUN: FileCheck -check-prefix=CHECK-NOINLINE %s 27 28 // RUN: %clang_cc1 -DINLINE="static" -triple x86_64-unknown-linux-gnu -o - \ 29 // RUN: -emit-interface-stubs -std=c99 -xc %s | \ 30 // RUN: FileCheck -check-prefix=CHECK-STATIC %s 31 // RUN: %clang -DINLINE="static" -target x86_64-linux-gnu -O0 -o - -c \ 32 // RUN: -std=c99 -xc %s | llvm-nm - 2>&1 | count 0 33 34 // CHECK-GNU-DAG: foo 35 // CHECK-GNU-DAG: foo.var 36 // CHECK-NOINLINE-DAG: foo 37 // CHECK-NOINLINE-DAG: foo.var 38 // CHECK-STATIC-NOT: foo 39 // CHECK-STATIC-NOT: foo.var 40 // CHECK-STD-NOT: foo 41 #pragma clang diagnostic ignored "-Wstatic-local-in-inline" 42 INLINE int foo(void) { 43 static int var = 42; 44 return var; 45 } 46 47 // RUN: %clang_cc1 -DINLINE=inline -triple x86_64-linux-gnu -o - \ 48 // RUN: -emit-interface-stubs \ 49 // RUN: -std=gnu89 -xc %s | FileCheck -check-prefix=CHECK-TAPI %s 50 51 // RUN: %clang_cc1 -DINLINE=inline -triple x86_64-linux-gnu -o - \ 52 // RUN: -emit-interface-stubs \ 53 // RUN: -std=gnu89 -xc %s | FileCheck -check-prefix=CHECK-SYMBOLS %s 54 // RUN: %clang -DINLINE=inline -target x86_64-linux-gnu -o - \ 55 // RUN: -c -std=gnu89 -xc %s | llvm-nm - 2>&1 | \ 56 // RUN: FileCheck -check-prefix=CHECK-SYMBOLS %s 57 58 // CHECK-TAPI-DAG: foo", Type: Func } 59 // CHECK-TAPI-DAG: foo.var", Type: Object, Size: 4 } 60 // CHECK-SYMBOLS-DAG: foo 61 // CHECK-SYMBOLS-DAG: foo.var 62 #include "inline.h" 63