diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGen/complex-init-list.c | |
parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) |
Diffstat (limited to 'test/CodeGen/complex-init-list.c')
-rw-r--r-- | test/CodeGen/complex-init-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/complex-init-list.c b/test/CodeGen/complex-init-list.c index 99c1c62b5884..bc38e2caf21f 100644 --- a/test/CodeGen/complex-init-list.c +++ b/test/CodeGen/complex-init-list.c @@ -8,11 +8,11 @@ _Complex float x = { 1.0f, 1.0f/0.0f }; // CHECK: @x = global { float, float } { float 1.000000e+00, float 0x7FF0000000000000 }, align 4 _Complex float f(float x, float y) { _Complex float z = { x, y }; return z; } -// CHECK: define <2 x float> @f +// CHECK-LABEL: define <2 x float> @f // CHECK: alloca { float, float } // CHECK: alloca { float, float } _Complex float f2(float x, float y) { return (_Complex float){ x, y }; } -// CHECK: define <2 x float> @f2 +// CHECK-LABEL: define <2 x float> @f2 // CHECK: alloca { float, float } // CHECK: alloca { float, float } |