diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-04-26 00:07:36 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-04-26 00:07:36 +0000 |
commit | 9f12bc480b23b673aa7643d19a62f11521247e58 (patch) | |
tree | d627139dd1cae760947c8b412593a2a69a5a4371 /llvm/test | |
parent | 0be6fc5fd750eaece49daf65728448c42c9ceaf8 (diff) | |
download | bcm5719-llvm-9f12bc480b23b673aa7643d19a62f11521247e58.tar.gz bcm5719-llvm-9f12bc480b23b673aa7643d19a62f11521247e58.zip |
New test case.
llvm-svn: 36455
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_add.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/vec_add.ll b/llvm/test/CodeGen/X86/vec_add.ll new file mode 100644 index 00000000000..b4154f63084 --- /dev/null +++ b/llvm/test/CodeGen/X86/vec_add.ll @@ -0,0 +1,7 @@ +; RUN: llvm-as < %s | | llc -march=x86 -mattr=+sse2 + +define <2 x i64> @test(<2 x i64> %a, <2 x i64> %b) { +entry: + %tmp9 = add <2 x i64> %b, %a ; <<2 x i64>> [#uses=1] + ret <2 x i64> %tmp9 +} |