[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / attr-func-def.c
blobd0c79c6505bb95b9a4b072fa325e0764844dbe8e
1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.10.0 -emit-llvm -Oz -o - %s | FileCheck %s
3 // CHECK: define{{.*}} i32 @foo2(i32 noundef %a) local_unnamed_addr [[ATTRS2:#[0-9]+]] {
4 // CHECK: define{{.*}} i32 @foo1(i32 noundef %a) local_unnamed_addr [[ATTRS1:#[0-9]+]] {
6 int foo1(int);
8 int foo2(int a) {
9 return foo1(a + 2);
12 __attribute__((optnone))
13 int foo1(int a) {
14 return a + 1;
17 // CHECK: attributes [[ATTRS2]] = { {{.*}}optsize{{.*}} }
18 // CHECK: attributes [[ATTRS1]] = { {{.*}}optnone{{.*}} }