mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Simplify BranchInst::getSuccessor, avoiding a conditional operator.
llvm-svn: 36991
This commit is contained in:
parent
2e4ac0dea5
commit
fad75ac3af
@ -1323,8 +1323,7 @@ public:
|
||||
|
||||
BasicBlock *getSuccessor(unsigned i) const {
|
||||
assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
|
||||
return (i == 0) ? cast<BasicBlock>(getOperand(0)) :
|
||||
cast<BasicBlock>(getOperand(1));
|
||||
return cast<BasicBlock>(getOperand(i));
|
||||
}
|
||||
|
||||
void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user