mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-07 12:30:57 +00:00
change some static_cast into cast, pointed out by Gabor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83703 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ceaa457a9d
commit
fc61aeff2c
@ -1913,7 +1913,7 @@ public:
|
||||
/// getIncomingBlock - Return incoming basic block #i.
|
||||
///
|
||||
BasicBlock *getIncomingBlock(unsigned i) const {
|
||||
return static_cast<BasicBlock*>(getOperand(i*2+1));
|
||||
return cast<BasicBlock>(getOperand(i*2+1));
|
||||
}
|
||||
|
||||
/// getIncomingBlock - Return incoming basic block corresponding
|
||||
@ -1921,7 +1921,7 @@ public:
|
||||
///
|
||||
BasicBlock *getIncomingBlock(const Use &U) const {
|
||||
assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?");
|
||||
return static_cast<BasicBlock*>((&U + 1)->get());
|
||||
return cast<BasicBlock>((&U + 1)->get());
|
||||
}
|
||||
|
||||
/// getIncomingBlock - Return incoming basic block corresponding
|
||||
|
Loading…
Reference in New Issue
Block a user