Unbreak the clang build after r169712.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169713 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2012-12-09 21:58:24 +00:00
Родитель fff3248e69
Коммит 29573b0a82
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -50,10 +50,10 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext)
llvm::FastMathFlags FMF;
if (CGM.getLangOpts().FastMath)
FMF.UnsafeAlgebra = true;
FMF.setUnsafeAlgebra();
if (CGM.getLangOpts().FiniteMathOnly) {
FMF.NoNaNs = true;
FMF.NoInfs = true;
FMF.setNoNaNs();
FMF.setNoInfs();
}
Builder.SetFastMathFlags(FMF);
}