From 952eddef9aff85b1e92626e89baaf7a360e2ac85 Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 22 Dec 2013 00:07:40 +0000 Subject: Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3): https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841 --- test/CodeGen/function-attributes.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/CodeGen/function-attributes.c') diff --git a/test/CodeGen/function-attributes.c b/test/CodeGen/function-attributes.c index 25ca916..47a0568 100644 --- a/test/CodeGen/function-attributes.c +++ b/test/CodeGen/function-attributes.c @@ -24,7 +24,7 @@ void f6(signed short x) { } void f7(unsigned short x) { } -// CHECK: define void @f8() +// CHECK-LABEL: define void @f8() // CHECK: [[AI:#[0-9]+]] // CHECK: { void __attribute__((always_inline)) f8(void) { } @@ -61,7 +61,7 @@ void f13(void){} // Ensure that these get inlined: rdar://6853279 -// CHECK: define void @f14 +// CHECK-LABEL: define void @f14 // CHECK-NOT: @ai_ // CHECK: call void @f14_end static __inline__ __attribute__((always_inline)) @@ -81,21 +81,21 @@ void f14(int a) { } // [irgen] clang isn't setting the optsize bit on functions -// CHECK: define void @f15 +// CHECK-LABEL: define void @f15 // CHECK: [[NUW]] // CHECK: { void f15(void) { } // PR5254 -// CHECK: define void @f16 +// CHECK-LABEL: define void @f16 // CHECK: [[ALIGN:#[0-9]+]] // CHECK: { void __attribute__((force_align_arg_pointer)) f16(void) { } // PR11038 -// CHECK: define void @f18() +// CHECK-LABEL: define void @f18() // CHECK: [[RT:#[0-9]+]] // CHECK: { // CHECK: call void @f17() @@ -106,7 +106,7 @@ __attribute__ ((returns_twice)) void f18(void) { f17(); } -// CHECK: define void @f19() +// CHECK-LABEL: define void @f19() // CHECK: { // CHECK: call i32 @setjmp(i32* null) // CHECK: [[RT_CALL]] -- cgit v1.1