blob: 8361680546f3d8758d274df52a1cc86902402095 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// RUN: %clang_cc1 -fexceptions -emit-llvm %s -o - | FileCheck %s
int c(void) __attribute__((const));
int p(void) __attribute__((pure));
int t(void);
// CHECK: define i32 @_Z1fv() {
int f(void) {
// CHECK: call i32 @_Z1cv() nounwind readnone
// CHECK: call i32 @_Z1pv() nounwind readonly
return c() + p() + t();
}
// CHECK: declare i32 @_Z1cv() nounwind readnone
// CHECK: declare i32 @_Z1pv() nounwind readonly
// CHECK-NOT: declare i32 @_Z1tv() nounwind
|