diff options
author | Dan Gohman <gohman@apple.com> | 2007-08-15 13:42:36 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-08-15 13:42:36 +0000 |
commit | 5327cf7b48b4f90a32f1cbe03e63624e3b8aef15 (patch) | |
tree | dc98eac61f3d14b5b077cc0aa787b38a42459314 /llvm/test/CodeGen/X86/trunc-to-bool.ll | |
parent | f9dd170e36e465bc8a16d31daae4ee775504fc47 (diff) | |
download | bcm5719-llvm-5327cf7b48b4f90a32f1cbe03e63624e3b8aef15.tar.gz bcm5719-llvm-5327cf7b48b4f90a32f1cbe03e63624e3b8aef15.zip |
Convert another test to use the count script. This one didn't fit the
regex used to convert all the others because the first '|' was on a
separate line.
llvm-svn: 41098
Diffstat (limited to 'llvm/test/CodeGen/X86/trunc-to-bool.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/trunc-to-bool.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/trunc-to-bool.ll b/llvm/test/CodeGen/X86/trunc-to-bool.ll index 69f37c0696a..9dd14252ace 100644 --- a/llvm/test/CodeGen/X86/trunc-to-bool.ll +++ b/llvm/test/CodeGen/X86/trunc-to-bool.ll @@ -2,7 +2,7 @@ ; sure only the LSBit survives. Test that this is the case both for a returned ; value and as the operand of a branch. ; RUN: llvm-as < %s | llc -march=x86 | grep {\\(and\\)\\|\\(test.*\\\$1\\)} | \ -; RUN: wc -l | grep 6 +; RUN: count 6 define i1 @test1(i32 %X) zeroext { %Y = trunc i32 %X to i1 |