Skip to content

Commit 057abc8

Browse files
committed
*v*
1 parent 54c058d commit 057abc8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

llvm/lib/Transforms/Utils/SimplifyCFG.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7587,16 +7587,13 @@ static bool passingValueIsAlwaysUndefined(Value *V, Instruction *I, bool PtrValu
75877587
default:
75887588
return false;
75897589
case Instruction::GetElementPtr:
7590-
return true;
75917590
case Instruction::Ret:
7592-
return true;
75937591
case Instruction::BitCast:
7594-
return true;
75957592
case Instruction::Load:
7596-
return true;
75977593
case Instruction::Store:
7598-
return true;
75997594
case Instruction::Call:
7595+
case Instruction::CallBr:
7596+
case Instruction::Invoke:
76007597
return true;
76017598
}
76027599
});

0 commit comments

Comments
 (0)