forked from OSchip/llvm-project
[Analysis] Drop an unnecessary const from a return type (NFC)
Identified with readability-const-return-type.
This commit is contained in:
parent
152d61a821
commit
cda7b6aaf3
|
@ -3486,7 +3486,7 @@ const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS,
|
|||
return S;
|
||||
}
|
||||
|
||||
const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
|
||||
APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
|
||||
APInt A = C1->getAPInt().abs();
|
||||
APInt B = C2->getAPInt().abs();
|
||||
uint32_t ABW = A.getBitWidth();
|
||||
|
|
Loading…
Reference in New Issue