Fixed the test - added -mcpu=penryn flag to avoid ambiguity in code generation.
authorElena Demikhovsky <elena.demikhovsky@intel.com>
Mon, 16 Dec 2013 14:24:08 +0000 (14:24 +0000)
committerElena Demikhovsky <elena.demikhovsky@intel.com>
Mon, 16 Dec 2013 14:24:08 +0000 (14:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197385 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/isint.ll

index ce3f1357848018b5cf68166f88cc2c60e0d522d7..792b8c69db425ba1c32635cbe9f62d8915835aee 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
+; RUN: llc < %s -march=x86 -mattr=+sse2 -mcpu=penryn| FileCheck %s
 
 define i32 @isint_return(double %d) nounwind {
 ; CHECK-NOT: xor
@@ -8,8 +8,8 @@ define i32 @isint_return(double %d) nounwind {
   %e = sitofp i32 %i to double
 ; CHECK: cmpeqsd
   %c = fcmp oeq double %d, %e
-; CHECK-NEXT: movq
-; CHECK-NEXT: andq
+; CHECK-NEXT: movd
+; CHECK-NEXT: andl
   %z = zext i1 %c to i32
   ret i32 %z
 }