diff options
author | Duncan Sands <baldrick@free.fr> | 2012-04-16 19:40:49 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-04-16 19:40:49 +0000 |
commit | 54c05faadeaeedea3f9df266a1acc1fe3b0ba6c2 (patch) | |
tree | 6c271ed55ce980ca9e867a775f3178824dd26725 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 9af6298293fdafe38f5b90b9f79c0aaeeaf83ec8 (diff) | |
download | bcm5719-llvm-54c05faadeaeedea3f9df266a1acc1fe3b0ba6c2.tar.gz bcm5719-llvm-54c05faadeaeedea3f9df266a1acc1fe3b0ba6c2.zip |
Remove support for -fast-math metadata for the moment.
llvm-svn: 154851
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index f4b483b5158..2939062c9bb 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -42,10 +42,6 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) TerminateHandler(0), TrapBB(0) { CatchUndefined = getContext().getLangOpts().CatchUndefined; - if (getContext().getLangOpts().FastMath) { - llvm::MDBuilder MDHelper(Builder.getContext()); - Builder.SetDefaultFPMathTag(MDHelper.createFastFPMath()); - } CGM.getCXXABI().getMangleContext().startNewFunction(); } |