diff options
author | Michael Liao <michael.liao@intel.com> | 2012-10-23 17:34:00 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2012-10-23 17:34:00 +0000 |
commit | 1be96bb5ce8735ef92a36c4bdd1fcb0089ee171b (patch) | |
tree | d21955f6d2ee7b6da4e7fbbf14777a68259d5a40 /llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll | |
parent | c33f622c6f7bda2771faab5b389c9ad191da4c30 (diff) | |
download | bcm5719-llvm-1be96bb5ce8735ef92a36c4bdd1fcb0089ee171b.tar.gz bcm5719-llvm-1be96bb5ce8735ef92a36c4bdd1fcb0089ee171b.zip |
Enable lowering ZERO_EXTEND/ANY_EXTEND to PMOVZX from SSE4.1
llvm-svn: 166486
Diffstat (limited to 'llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll b/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll index 8a3ccc8dfda..3ce7db6e413 100644 --- a/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll +++ b/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll @@ -2,8 +2,8 @@ ;CHECK: vcast define <2 x i32> @vcast(<2 x float> %a, <2 x float> %b) { -;CHECK: pshufd -;CHECK: pshufd +;CHECK: pmovzxdq +;CHECK: pmovzxdq %af = bitcast <2 x float> %a to <2 x i32> %bf = bitcast <2 x float> %b to <2 x i32> %x = sub <2 x i32> %af, %bf |