diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 16:10:32 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 16:10:32 +0000 |
commit | 07f4eecd2a0fa805e5eb40c60b6a2936f05ad10d (patch) | |
tree | 2f5479a8f3f3320af9aa96294a724d43fffb90ce /llvm/test/CodeGen/Generic/switch-lower-feature.ll | |
parent | a2f743eaff017f4bd94c0a9b37fdcb258dc9b3f6 (diff) | |
download | bcm5719-llvm-07f4eecd2a0fa805e5eb40c60b6a2936f05ad10d.tar.gz bcm5719-llvm-07f4eecd2a0fa805e5eb40c60b6a2936f05ad10d.zip |
Fix some more quoting issues in RUN lines, this time regarding unintended
variable expansions involving the $ character.
This fixes 4 tests that were not running properly before.
llvm-svn: 52183
Diffstat (limited to 'llvm/test/CodeGen/Generic/switch-lower-feature.ll')
-rw-r--r-- | llvm/test/CodeGen/Generic/switch-lower-feature.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Generic/switch-lower-feature.ll b/llvm/test/CodeGen/Generic/switch-lower-feature.ll index 989693cf3f2..05234012547 100644 --- a/llvm/test/CodeGen/Generic/switch-lower-feature.ll +++ b/llvm/test/CodeGen/Generic/switch-lower-feature.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86 -o - | grep \$7 | count 1 -; RUN: llvm-as < %s | llc -march=x86 -o - | grep \$6 | count 1 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep {\$7} | count 1 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep {\$6} | count 1 ; RUN: llvm-as < %s | llc -march=x86 -o - | grep 1024 | count 1 ; RUN: llvm-as < %s | llc -march=x86 -o - | grep jb | count 2 ; RUN: llvm-as < %s | llc -march=x86 -o - | grep je | count 1 |