From: Sanjay Patel Date: Tue, 12 Jan 2016 18:03:41 +0000 (+0000) Subject: function names start with a lower case letter ; NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=523c6688f954a5787d75a29e1d8cfc07f98c3052;p=clang function names start with a lower case letter ; NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@257497 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index 1047120fae..e38ff0a39d 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -79,7 +79,7 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext) if (CGM.getCodeGenOpts().ReciprocalMath) { FMF.setAllowReciprocal(); } - Builder.SetFastMathFlags(FMF); + Builder.setFastMathFlags(FMF); } CodeGenFunction::~CodeGenFunction() {