Change to use FileCheck

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2009-10-31 22:16:14 +00:00
parent 0e5c9beeed
commit 91c0aebe68

View File

@ -1,6 +1,8 @@
; RUN: llc < %s -march=thumb -mattr=+thumb2 | grep {movw\\W*r\[0-9\],\\W*#\[0-9\]*} | grep {#65535} | count 1
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
define i32 @f6(i32 %a) {
;CHECK: f6
;CHECK: movw r0, #65535
%tmp = add i32 0, 65535
ret i32 %tmp
}