Skip to content

Commit 57cb926

Browse files
[Analysis] Drop const from a return type (NFC) (#147098)
We don't need const on a return type.
1 parent 21fb7e6 commit 57cb926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/ConstantFolding.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ inline bool llvm_fenv_testexcept() {
19631963
return false;
19641964
}
19651965

1966-
static const APFloat FTZPreserveSign(const APFloat &V) {
1966+
static APFloat FTZPreserveSign(const APFloat &V) {
19671967
if (V.isDenormal())
19681968
return APFloat::getZero(V.getSemantics(), V.isNegative());
19691969
return V;

0 commit comments

Comments
 (0)