diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-06-26 07:05:57 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-06-26 07:05:57 +0000 |
commit | 6677f5112793239d2a5cd7c5a3fb7d5b4e2cac19 (patch) | |
tree | a4eaef25e13b5787d92f00e5ddb9f3affb3b74fc | |
parent | 855a168dbeddfb905ca4cb1e9402a2ec2eab27ea (diff) |
Fix tests: Count -> count.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74282 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/ARM/orn.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Thumb2/thumb2-orn.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/orn.ll b/test/CodeGen/ARM/orn.ll index 2c3fcc8d27..b4ea433c40 100644 --- a/test/CodeGen/ARM/orn.ll +++ b/test/CodeGen/ARM/orn.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=arm | grep {bic\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | Count 2 +; RUN: llvm-as < %s | llc -march=arm | grep {bic\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | count 2 define i32 @f1(i32 %a, i32 %b) { %tmp = xor i32 %b, 4294967295 diff --git a/test/CodeGen/Thumb2/thumb2-orn.ll b/test/CodeGen/Thumb2/thumb2-orn.ll index 291858581b..9cae8d3049 100644 --- a/test/CodeGen/Thumb2/thumb2-orn.ll +++ b/test/CodeGen/Thumb2/thumb2-orn.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {bic\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | Count 2 +; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {bic\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | count 2 define i32 @f1(i32 %a, i32 %b) { %tmp = xor i32 %b, 4294967295 |