File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2004,21 +2004,20 @@ inline bool llvm_fenv_testexcept() {
2004
2004
return false ;
2005
2005
}
2006
2006
2007
- static const APFloat FTZPreserveSign (const APFloat &V) {
2007
+ static APFloat FTZPreserveSign (const APFloat &V) {
2008
2008
if (V.isDenormal ())
2009
2009
return APFloat::getZero (V.getSemantics (), V.isNegative ());
2010
2010
return V;
2011
2011
}
2012
2012
2013
- static const APFloat FlushToPositiveZero (const APFloat &V) {
2013
+ static APFloat FlushToPositiveZero (const APFloat &V) {
2014
2014
if (V.isDenormal ())
2015
2015
return APFloat::getZero (V.getSemantics (), false );
2016
2016
return V;
2017
2017
}
2018
2018
2019
- static const APFloat
2020
- FlushWithDenormKind (const APFloat &V,
2021
- DenormalMode::DenormalModeKind DenormKind) {
2019
+ static APFloat FlushWithDenormKind (const APFloat &V,
2020
+ DenormalMode::DenormalModeKind DenormKind) {
2022
2021
assert (DenormKind != DenormalMode::DenormalModeKind::Invalid &&
2023
2022
DenormKind != DenormalMode::DenormalModeKind::Dynamic);
2024
2023
switch (DenormKind) {
You can’t perform that action at this time.
0 commit comments