Simplify tests by not piping them through llvm-dis.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier 2011-10-25 19:59:50 +00:00
parent 013d756310
commit 9f9491ca2e
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
; correctly.
; Check to make sure old CRC32 intrinsics are auto-upgraded 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
;
; RUN: opt < %s | llvm-dis | FileCheck %s
; RUN: opt < %s -S | FileCheck %s
; crc32.8 should upgrade to 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}
define <4 x i32> @align1(<4 x i32> %a, <4 x i32> %b) nounwind readnone ssp {