From ec8eee2d3a402dd001daae3865bc5c10b41c323e Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Wed, 29 Apr 2009 22:47:44 +0000 Subject: Fix infinite recursion in the C++ code which handles movddup by making it unnecessary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70425 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/vec_shuffle-22.ll | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'test/CodeGen/X86/vec_shuffle-22.ll') diff --git a/test/CodeGen/X86/vec_shuffle-22.ll b/test/CodeGen/X86/vec_shuffle-22.ll index 5648356..d19f110 100644 --- a/test/CodeGen/X86/vec_shuffle-22.ll +++ b/test/CodeGen/X86/vec_shuffle-22.ll @@ -1,6 +1,9 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep shuf -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2,-sse3 | grep movlhps | count 2 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse3 | grep movddup | count 1 +; RUN: llvm-as < %s | llc -march=x86 -mcpu=pentium-m -o %t -f +; RUN: grep movlhps %t | count 1 +; RUN: grep pshufd %t | count 1 +; RUN: llvm-as < %s | llc -march=x86 -mcpu=core2 -o %t -f +; RUN: grep movlhps %t | count 1 +; RUN: grep movddup %t | count 1 define <4 x float> @t1(<4 x float> %a) nounwind { entry: -- cgit v1.1