1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -std=c99 -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-passes -Os -std=c99 -o - %s | FileCheck %s
4 // CHECK: define{{.*}} signext i8 @f0(i32 noundef %x) [[NUW:#[0-9]+]]
5 // CHECK: define{{.*}} zeroext i8 @f1(i32 noundef %x) [[NUW]]
6 // CHECK: define{{.*}} void @f2(i8 noundef signext %x) [[NUW]]
7 // CHECK: define{{.*}} void @f3(i8 noundef zeroext %x) [[NUW]]
8 // CHECK: define{{.*}} signext i16 @f4(i32 noundef %x) [[NUW]]
9 // CHECK: define{{.*}} zeroext i16 @f5(i32 noundef %x) [[NUW]]
10 // CHECK: define{{.*}} void @f6(i16 noundef signext %x) [[NUW]]
11 // CHECK: define{{.*}} void @f7(i16 noundef zeroext %x) [[NUW]]
13 signed char f0(int x
) { return x
; }
15 unsigned char f1(int x
) { return x
; }
17 void f2(signed char x
) { }
19 void f3(unsigned char x
) { }
21 signed short f4(int x
) { return x
; }
23 unsigned short f5(int x
) { return x
; }
25 void f6(signed short x
) { }
27 void f7(unsigned short x
) { }
29 // CHECK-LABEL: define{{.*}} void @f8()
30 // CHECK: [[AI:#[0-9]+]]
32 void __attribute__((always_inline
)) f8(void) { }
34 // CHECK: call void @f9_t()
35 // CHECK: [[NR:#[0-9]+]]
37 void __attribute__((noreturn
)) f9_t(void);
38 void f9(void) { f9_t(); }
40 // CHECK: call void @f9a()
43 _Noreturn
void f9a(void);
44 void f9b(void) { f9a(); }
46 // FIXME: We should be setting nounwind on calls.
47 // CHECK: call i32 @f10_t()
48 // CHECK: [[NUW_RN:#[0-9]+]]
50 int __attribute__((const)) f10_t(void);
51 int f10(void) { return f10_t(); }
57 return arg
? 0 : f10_t();
60 // CHECK: define{{.*}} i32 @f13() [[NUW_OS_RN:#[0-9]+]]
61 int f13(void) __attribute__((const));
62 int f13(void){ return 0; }
65 // [irgen] clang isn't setting the optsize bit on functions
66 // CHECK-LABEL: define{{.*}} void @f15
73 // CHECK-LABEL: define{{.*}} void @f16
74 // CHECK: [[SR:#[0-9]+]]
76 void __attribute__((force_align_arg_pointer
)) f16(void) {
80 // CHECK-LABEL: define{{.*}} void @f18()
81 // CHECK: [[RT:#[0-9]+]]
83 // CHECK: call void @f17()
84 // CHECK: [[RT_CALL:#[0-9]+]]
86 __attribute__ ((returns_twice
)) void f17(void);
87 __attribute__ ((returns_twice
)) void f18(void) {
91 // CHECK-LABEL: define{{.*}} void @f19()
93 // CHECK: call i32 @setjmp(ptr noundef null)
96 typedef int jmp_buf[((9 * 2) + 3 + 16)];
102 // CHECK-LABEL: define{{.*}} void @f20()
104 // CHECK: call i32 @_setjmp(ptr noundef null)
105 // CHECK: [[RT_CALL]]
107 int _setjmp(jmp_buf);
112 // CHECK: attributes [[NUW]] = { nounwind optsize{{.*}} }
113 // CHECK: attributes [[AI]] = { alwaysinline nounwind optsize{{.*}} }
114 // CHECK: attributes [[NUW_OS_RN]] = { nounwind optsize willreturn memory(none){{.*}} }
115 // CHECK: attributes [[SR]] = { nounwind optsize{{.*}} "stackrealign"{{.*}} }
116 // CHECK: attributes [[RT]] = { nounwind optsize returns_twice{{.*}} }
117 // CHECK: attributes [[NR]] = { noreturn optsize }
118 // CHECK: attributes [[NUW_RN]] = { nounwind optsize willreturn memory(none) }
119 // CHECK: attributes [[RT_CALL]] = { optsize returns_twice }