[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / no_profile.c
blobdde3da12755fcb15fb8e1296ad377960d4274222
1 // RUN: %clang_cc1 -fprofile-instrument=llvm -disable-llvm-passes \
2 // RUN: -emit-llvm -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -fprofile-instrument=csllvm -disable-llvm-passes \
4 // RUN: -emit-llvm -o - %s | FileCheck %s
5 // RUN: %clang_cc1 -fprofile-instrument=clang -disable-llvm-passes \
6 // RUN: -emit-llvm -o - %s | FileCheck %s
7 // RUN: %clang_cc1 -fprofile-arcs -disable-llvm-passes \
8 // RUN: -emit-llvm -o - %s | FileCheck %s
9 int g(int);
11 void __attribute__((no_profile_instrument_function)) no_instr(void) {
12 // CHECK: define {{.*}}void @no_instr() [[ATTR:#[0-9]+]]
15 void instr(void) {
16 // CHECK: define {{.*}}void @instr() [[ATTR2:#[0-9]+]]
18 // CHECK: attributes [[ATTR]] = {{.*}} noprofile
19 // CHECK: attributes [[ATTR2]] = {
20 // CHECK-NOT: noprofile
21 // CHECK: }