summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/unaligned_load_store.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-08-15 13:49:33 +0000
committerDan Gohman <gohman@apple.com>2007-08-15 13:49:33 +0000
commit43c3db37f633cbed14d5ead201cfab7e67104605 (patch)
tree1b89122ec72a464a3aaa95631ccc2e3dacff9537 /test/CodeGen/ARM/unaligned_load_store.ll
parente5ab8c67653e54bd7eca65554fd393be075dc4b8 (diff)
downloadllvm-43c3db37f633cbed14d5ead201cfab7e67104605.tar.gz
llvm-43c3db37f633cbed14d5ead201cfab7e67104605.tar.bz2
llvm-43c3db37f633cbed14d5ead201cfab7e67104605.tar.xz
Convert tests using "grep -c ... | grep ..." to use the count script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41100 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/unaligned_load_store.ll')
-rw-r--r--test/CodeGen/ARM/unaligned_load_store.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/unaligned_load_store.ll b/test/CodeGen/ARM/unaligned_load_store.ll
index 211d748be3..dad1897463 100644
--- a/test/CodeGen/ARM/unaligned_load_store.ll
+++ b/test/CodeGen/ARM/unaligned_load_store.ll
@@ -1,7 +1,7 @@
; RUN: llvm-as < %s | \
; RUN: llc -march=arm -o %t -f
-; RUN: grep -c ldrb %t | grep 4
-; RUN: grep -c strb %t | grep 4
+; RUN: grep ldrb %t | count 4
+; RUN: grep strb %t | count 4
%struct.p = type <{ i8, i32 }>