Be kind to non-x86 hosts.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58113 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2008-10-24 21:20:25 +00:00
parent 61df3b751a
commit 47106ba658
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -enable-legalize-types
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -enable-legalize-types
; PR2762
define void @foo(<4 x i32>* %p, <4 x double>* %q) {
%n = load <4 x i32>* %p

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=x86 > %t
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 > %t
; RUN: not grep cmp %t
; RUN: not grep xor %t
; RUN: grep jne %t | count 1