[llvm] r228532 - generalize test; nothing Nehalem-specific here
Sanjay Patel
spatel at rotateright.com
Sun Feb 8 11:38:25 PST 2015
Author: spatel
Date: Sun Feb 8 13:38:25 2015
New Revision: 228532
URL: http://llvm.org/viewvc/llvm-project?rev=228532&view=rev
Log:
generalize test; nothing Nehalem-specific here
Modified:
llvm/trunk/test/CodeGen/X86/xor.ll
Modified: llvm/trunk/test/CodeGen/X86/xor.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/xor.ll?rev=228532&r1=228531&r2=228532&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/xor.ll (original)
+++ llvm/trunk/test/CodeGen/X86/xor.ll Sun Feb 8 13:38:25 2015
@@ -1,6 +1,6 @@
-; RUN: llc < %s -mcpu=corei7 -march=x86 -mattr=+sse2 | FileCheck %s -check-prefix=X32
-; RUN: llc < %s -mcpu=corei7 -mtriple=x86_64-linux | FileCheck %s -check-prefix=X64
-; RUN: llc < %s -mcpu=corei7 -mtriple=x86_64-win32 | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s -check-prefix=X32
+; RUN: llc < %s -mtriple=x86_64-linux -mattr=+sse2 | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -mtriple=x86_64-win32 -mattr=+sse2 | FileCheck %s -check-prefix=X64
; Though it is undefined, we want xor undef,undef to produce zero.
define <4 x i32> @test1() nounwind {
More information about the llvm-commits
mailing list