File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1684,10 +1684,10 @@ class CompoundStmt final
1684
1684
return hasStoredFPFeatures () ? getStoredFPFeatures () : FPOptionsOverride ();
1685
1685
}
1686
1686
1687
- // / Get FPOptions inside this statement. They may differ from the outer
1687
+ // / Get FPOptions active inside this statement. They may differ from the outer
1688
1688
// / options due to pragmas.
1689
1689
// / \param CurFPOptions FPOptions outside this statement.
1690
- FPOptions getInsideFPOptions (FPOptions CurFPOptions) const {
1690
+ FPOptions getActiveFPOptions (FPOptions CurFPOptions) const {
1691
1691
return hasStoredFPFeatures ()
1692
1692
? getStoredFPFeatures ().applyOverrides (CurFPOptions)
1693
1693
: CurFPOptions;
Original file line number Diff line number Diff line change @@ -524,7 +524,7 @@ CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
524
524
525
525
// Optionally set up the new FP environment, if the compound statement
526
526
// contains a pragma that modifies it.
527
- FPOptions NewFP = S.getInsideFPOptions (CurFPFeatures);
527
+ FPOptions NewFP = S.getActiveFPOptions (CurFPFeatures);
528
528
CGFPOptionsRAII SavedFPFeatues (*this , NewFP);
529
529
530
530
Address RetAlloca = Address::invalid ();
You can’t perform that action at this time.
0 commit comments