Undo previous patch.

llvm-svn: 60701
This commit is contained in:
Devang Patel 2008-12-08 17:02:37 +00:00
parent fd39a042aa
commit 82fb6bc606
2 changed files with 2 additions and 4 deletions

View File

@ -168,9 +168,7 @@ static Value *FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed) {
// TODO: Handle: br (VARIANT|INVARIANT).
// TODO: Hoist simple expressions out of loops.
if (Instruction *I = dyn_cast<Instruction>(Cond))
if (!L->contains(I->getParent()))
return 0;
if (L->isLoopInvariant(Cond)) return Cond;
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond))
if (BO->getOpcode() == Instruction::And ||

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -loop-unswitch -stats | not grep loop-unswitch
; RUN: llvm-as < %s | opt -loop-unswitch -verify -disable-output
define void @test_fc_while_continue_or(float %x, float %y, float* %result) nounwind {