mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
[InstCombine] Remove 'return' of a called function that also returned void. NFC
llvm-svn: 303028
This commit is contained in:
parent
9ff7dd68c1
commit
f89b6ec89f
@ -492,7 +492,7 @@ public:
|
||||
|
||||
void computeKnownBits(Value *V, KnownBits &Known,
|
||||
unsigned Depth, Instruction *CxtI) const {
|
||||
return llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
|
||||
llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
|
||||
}
|
||||
|
||||
bool MaskedValueIsZero(Value *V, const APInt &Mask, unsigned Depth = 0,
|
||||
@ -505,8 +505,7 @@ public:
|
||||
}
|
||||
void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
|
||||
unsigned Depth = 0, Instruction *CxtI = nullptr) const {
|
||||
return llvm::ComputeSignBit(V, KnownZero, KnownOne, DL, Depth, &AC, CxtI,
|
||||
&DT);
|
||||
llvm::ComputeSignBit(V, KnownZero, KnownOne, DL, Depth, &AC, CxtI, &DT);
|
||||
}
|
||||
OverflowResult computeOverflowForUnsignedMul(Value *LHS, Value *RHS,
|
||||
const Instruction *CxtI) {
|
||||
|
Loading…
Reference in New Issue
Block a user