Skip to content

Commit e56bc1b

Browse files
committed
Merge pull request #624 from joemasilotti/looses-vs-loses
Fix grammar of variable
2 parents 5777f87 + 5ea582c commit e56bc1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/SILOptimizer/Mandatory/ConstantPropagation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,10 +673,10 @@ case BuiltinValueKind::id:
673673
return nullptr;
674674
APFloat TruncVal = V->getValue();
675675
Type DestTy = Builtin.Types[1];
676-
bool loosesInfo;
676+
bool losesInfo;
677677
APFloat::opStatus ConversionStatus = TruncVal.convert(
678678
DestTy->castTo<BuiltinFloatType>()->getAPFloatSemantics(),
679-
APFloat::rmNearestTiesToEven, &loosesInfo);
679+
APFloat::rmNearestTiesToEven, &losesInfo);
680680
SILLocation Loc = BI->getLoc();
681681

682682
// Check if conversion was successful.

0 commit comments

Comments
 (0)