diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-08-15 06:47:53 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-08-15 06:47:53 +0000 |
commit | 4362261b0093730e46ffcad910e8b465cf0bb1cb (patch) | |
tree | b05fa6d247505d0ab46b16619f702532e189f698 /clang/test/CodeGen/x86_32-arguments-win32.c | |
parent | 83e042a21b5392882ccc020baa9ade52851b5903 (diff) | |
download | bcm5719-llvm-4362261b0093730e46ffcad910e8b465cf0bb1cb.tar.gz bcm5719-llvm-4362261b0093730e46ffcad910e8b465cf0bb1cb.zip |
CHECK-LABEL-ify some code gen tests to improve diagnostic experience when tests fail.
llvm-svn: 188447
Diffstat (limited to 'clang/test/CodeGen/x86_32-arguments-win32.c')
-rw-r--r-- | clang/test/CodeGen/x86_32-arguments-win32.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/clang/test/CodeGen/x86_32-arguments-win32.c b/clang/test/CodeGen/x86_32-arguments-win32.c index 77ff9e2ff3d..f8b09957b36 100644 --- a/clang/test/CodeGen/x86_32-arguments-win32.c +++ b/clang/test/CodeGen/x86_32-arguments-win32.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -w -triple i386-pc-win32 -emit-llvm -o - %s | FileCheck %s -// CHECK: define i64 @f1_1() -// CHECK: define void @f1_2(%struct.s1* byval align 4 %a0) +// CHECK-LABEL: define i64 @f1_1() +// CHECK-LABEL: define void @f1_2(%struct.s1* byval align 4 %a0) struct s1 { int a; int b; @@ -9,37 +9,37 @@ struct s1 { struct s1 f1_1(void) { while (1) {} } void f1_2(struct s1 a0) {} -// CHECK: define i32 @f2_1() +// CHECK-LABEL: define i32 @f2_1() struct s2 { short a; short b; }; struct s2 f2_1(void) { while (1) {} } -// CHECK: define i16 @f3_1() +// CHECK-LABEL: define i16 @f3_1() struct s3 { char a; char b; }; struct s3 f3_1(void) { while (1) {} } -// CHECK: define i8 @f4_1() +// CHECK-LABEL: define i8 @f4_1() struct s4 { char a:4; char b:4; }; struct s4 f4_1(void) { while (1) {} } -// CHECK: define i64 @f5_1() -// CHECK: define void @f5_2(%struct.s5* byval align 4) +// CHECK-LABEL: define i64 @f5_1() +// CHECK-LABEL: define void @f5_2(%struct.s5* byval align 4) struct s5 { double a; }; struct s5 f5_1(void) { while (1) {} } void f5_2(struct s5 a0) {} -// CHECK: define i32 @f6_1() -// CHECK: define void @f6_2(%struct.s6* byval align 4 %a0) +// CHECK-LABEL: define i32 @f6_1() +// CHECK-LABEL: define void @f6_2(%struct.s6* byval align 4 %a0) struct s6 { float a; }; |