diff options
| author | Tanya Lattner <tonic@nondot.org> | 2008-03-25 04:26:08 +0000 |
|---|---|---|
| committer | Tanya Lattner <tonic@nondot.org> | 2008-03-25 04:26:08 +0000 |
| commit | 6f729d601c8a6a9710356aadb42dc8d0efa95bf2 (patch) | |
| tree | e662b3ee5539d7594ab49eda3eae140424ce499d /test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll | |
| parent | a2fb634defce316ec972aa6f3ca3a941b4656f5e (diff) | |
Byebye llvm-upgrade!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll')
| -rw-r--r-- | test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll b/test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll index b98431357e..e75b214cb2 100644 --- a/test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll +++ b/test/Transforms/LoopSimplify/2004-04-01-IncorrectDomUpdate.ll @@ -1,24 +1,20 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -loopsimplify -licm -disable-output +; RUN: llvm-as < %s | opt -loopsimplify -licm -disable-output ; This is PR306 -void %NormalizeCoeffsVecFFE() { +define void @NormalizeCoeffsVecFFE() { entry: - br label %loopentry.0 - -loopentry.0: ; preds = %entry, %no_exit.0 - br bool false, label %loopentry.1, label %no_exit.0 - -no_exit.0: ; preds = %loopentry.0 - br bool false, label %loopentry.0, label %loopentry.1 - -loopentry.1: ; preds = %loopentry.0, %no_exit.0, %no_exit.1 - br bool false, label %no_exit.1, label %loopexit.1 - -no_exit.1: ; preds = %loopentry.1 - %tmp.43 = seteq ushort 0, 0 ; <bool> [#uses=1] - br bool %tmp.43, label %loopentry.1, label %loopexit.1 - -loopexit.1: ; preds = %loopentry.1, %no_exit.1 - ret void + br label %loopentry.0 +loopentry.0: ; preds = %no_exit.0, %entry + br i1 false, label %loopentry.1, label %no_exit.0 +no_exit.0: ; preds = %loopentry.0 + br i1 false, label %loopentry.0, label %loopentry.1 +loopentry.1: ; preds = %no_exit.1, %no_exit.0, %loopentry.0 + br i1 false, label %no_exit.1, label %loopexit.1 +no_exit.1: ; preds = %loopentry.1 + %tmp.43 = icmp eq i16 0, 0 ; <i1> [#uses=1] + br i1 %tmp.43, label %loopentry.1, label %loopexit.1 +loopexit.1: ; preds = %no_exit.1, %loopentry.1 + ret void } + |
