diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-07-08 23:57:18 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-07-08 23:57:18 +0000 |
commit | a7c941181868fb5c15cbb68131c7061aa55803a9 (patch) | |
tree | fb98b412ab6603d599d50deee25954d7b9ec4bbf /clang/test/CodeGen/x86_32-arguments-nommx.c | |
parent | fe2088bb1f7c7ebb30d97a9888d8573211984dad (diff) | |
download | bcm5719-llvm-a7c941181868fb5c15cbb68131c7061aa55803a9.tar.gz bcm5719-llvm-a7c941181868fb5c15cbb68131c7061aa55803a9.zip |
Silly typo in test for r134770.
llvm-svn: 134774
Diffstat (limited to 'clang/test/CodeGen/x86_32-arguments-nommx.c')
-rw-r--r-- | clang/test/CodeGen/x86_32-arguments-nommx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/x86_32-arguments-nommx.c b/clang/test/CodeGen/x86_32-arguments-nommx.c index d503ed0ad87..40362f796f6 100644 --- a/clang/test/CodeGen/x86_32-arguments-nommx.c +++ b/clang/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) |