aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2009-10-31 22:16:14 +0000
committerJim Grosbach <grosbach@apple.com>2009-10-31 22:16:14 +0000
commit91c0aebe68827172a0e520ddae863c174e977ea7 (patch)
tree951054d987bb0be5989415fa024fab2b65c27981 /test
parent0e5c9beeedae7294de2d3b756086cb9bc3edf45e (diff)
downloadexternal_llvm-91c0aebe68827172a0e520ddae863c174e977ea7.zip
external_llvm-91c0aebe68827172a0e520ddae863c174e977ea7.tar.gz
external_llvm-91c0aebe68827172a0e520ddae863c174e977ea7.tar.bz2
Change to use FileCheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/Thumb2/thumb2-mov4.ll4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-mov4.ll b/test/CodeGen/Thumb2/thumb2-mov4.ll
index 06fa238..475de9d 100644
--- a/test/CodeGen/Thumb2/thumb2-mov4.ll
+++ b/test/CodeGen/Thumb2/thumb2-mov4.ll
@@ -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
}