diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 09:21:47 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 09:21:47 +0000 |
commit | a551c041f9fd7d009e8cd04a2045377e4857b4aa (patch) | |
tree | e3dcbce1a63e69dbf64d4d7c430a0fce02aeef9d /llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll | |
parent | 5a576160bc36695b3289d27cac38006ccb1f2393 (diff) | |
download | bcm5719-llvm-a551c041f9fd7d009e8cd04a2045377e4857b4aa.tar.gz bcm5719-llvm-a551c041f9fd7d009e8cd04a2045377e4857b4aa.zip |
For PR1319:
Upgrade to use new Tcl exec based test harness. This exposes 3 bugs that
were previously not being reported:
test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
test/Transforms/GlobalOpt/memset.ll
test/Transforms/IndVarsSimplify/exit_value_tests.llx
llvm-svn: 36065
Diffstat (limited to 'llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll')
-rw-r--r-- | llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll b/llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll index 8bc5b8d2e65..5403955da47 100644 --- a/llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll +++ b/llvm/test/Transforms/SimplifyCFG/switch_switch_fold.ll @@ -1,4 +1,5 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | grep switch | wc -l | grep 1 +; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | \ +; RUN: grep switch | wc -l | grep 1 ; Test that a switch going to a switch on the same value can be merged. All ; three switches in this example can be merged into one big one. |