summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/attr-func-def.c
blob: a295488baa0dd6741088cc76d091a77660f63274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.10.0 -emit-llvm -Oz -o - %s | FileCheck %s

// CHECK: define i32 @foo2(i32 %a) local_unnamed_addr [[ATTRS2:#[0-9]+]] {
// CHECK: define i32 @foo1(i32 %a) local_unnamed_addr [[ATTRS1:#[0-9]+]] {

int foo1(int);

int foo2(int a) {
  return foo1(a + 2);
}

__attribute__((optnone))
int foo1(int a) {
    return a + 1;
}

// CHECK: attributes [[ATTRS2]] = { {{.*}}optsize{{.*}} }
// CHECK: attributes [[ATTRS1]] = { {{.*}}optnone{{.*}} }