diff options
Diffstat (limited to 'test/CodeGen/x86_32-arguments-win32.c')
| -rw-r--r-- | test/CodeGen/x86_32-arguments-win32.c | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/test/CodeGen/x86_32-arguments-win32.c b/test/CodeGen/x86_32-arguments-win32.c index 77ff9e2ff3dde..f8b09957b36e7 100644 --- a/test/CodeGen/x86_32-arguments-win32.c +++ b/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;  };  | 
