[Analysis] Drop an unnecessary const from a return type (NFC)

Identified with readability-const-return-type.
This commit is contained in:
Kazu Hirata 2022-01-30 16:04:58 -08:00
parent 152d61a821
commit cda7b6aaf3
1 changed files with 1 additions and 1 deletions

View File

@ -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();