diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/x86_32-arguments-nommx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/x86_32-arguments-nommx.c b/test/CodeGen/x86_32-arguments-nommx.c index d503ed0ad8..40362f796f 100644 --- a/test/CodeGen/x86_32-arguments-nommx.c +++ b/test/CodeGen/x86_32-arguments-nommx.c @@ -8,4 +8,4 @@ int a(i32v2 x) { return x[0]; } // but SSE2 vectors should still go into an SSE2 register typedef int __attribute__((vector_size (16))) i32v4; int b(i32v4 x) { return x[0]; } -// CHECK: define i32 @b(<4 x i32> %x.coerce) +// CHECK: define i32 @b(<4 x i32> %x) |