diff options
Diffstat (limited to 'test/CodeGen/X86/vec_set-A.ll')
-rw-r--r-- | test/CodeGen/X86/vec_set-A.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/X86/vec_set-A.ll b/test/CodeGen/X86/vec_set-A.ll new file mode 100644 index 0000000..f05eecf --- /dev/null +++ b/test/CodeGen/X86/vec_set-A.ll @@ -0,0 +1,6 @@ +; RUN: llc < %s -march=x86 -mattr=+sse2 | grep {movl.*\$1, %} +define <2 x i64> @test1() nounwind { +entry: + ret <2 x i64> < i64 1, i64 0 > +} + |