Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ecpcitest
proteas
llvm-project
Commits
448d0dfa
Commit
448d0dfa
authored
Jan 23, 2022
by
Kazu Hirata
Browse files
[Analysis] Remove a redundant const from a return type (NFC)
Identified with readability-const-return-type.
parent
fa90fc6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
llvm/lib/Analysis/ScalarEvolution.cpp
View file @
448d0dfa
...
...
@@ -3486,7 +3486,7 @@ const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS,
return S;
}
static
const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
APInt A = C1->getAPInt().abs();
APInt B = C2->getAPInt().abs();
uint32_t ABW = A.getBitWidth();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment