Simplify tests by not piping them through llvm-dis.

llvm-svn: 142948
This commit is contained in:
Chad Rosier 2011-10-25 19:59:50 +00:00
parent 60bbbbced1
commit 3b4b3fe448
2 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,10 @@
; Check to make sure old CRC32 intrinsics are auto-upgraded ; Check to make sure old CRC32 intrinsics are auto-upgraded correctly.
; correctly. ; Auto-upgrade happens when parsing a .bc or a .ll file. Thus, leave the test
; case as a .ll file so we can see what's going on.
; ;
; Rdar: 9472944 ; Rdar: 9472944
; ;
; RUN: opt < %s | llvm-dis | FileCheck %s ; RUN: opt < %s -S | FileCheck %s
; crc32.8 should upgrade to crc32.32.8 ; crc32.8 should upgrade to crc32.32.8
; CHECK: i32 @llvm.x86.sse42.crc32.32.8( ; CHECK: i32 @llvm.x86.sse42.crc32.32.8(

View File

@ -1,4 +1,4 @@
; RUN: opt < %s | llvm-dis | FileCheck %s ; RUN: opt < %s -S | FileCheck %s
; CHECK-NOT: {@llvm\\.palign} ; CHECK-NOT: {@llvm\\.palign}
define <4 x i32> @align1(<4 x i32> %a, <4 x i32> %b) nounwind readnone ssp { define <4 x i32> @align1(<4 x i32> %a, <4 x i32> %b) nounwind readnone ssp {