[llvm] r189091 - 80 cols

Alexey Samsonov samsonov at google.com
Fri Aug 23 00:42:52 PDT 2013


Author: samsonov
Date: Fri Aug 23 02:42:51 2013
New Revision: 189091

URL: http://llvm.org/viewvc/llvm-project?rev=189091&view=rev
Log:
80 cols

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp?rev=189091&r1=189090&r2=189091&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp Fri Aug 23 02:42:51 2013
@@ -561,9 +561,9 @@ bool DataFlowSanitizer::runOnModule(Modu
       FunctionType *NewFT = getInstrumentedABI() == IA_Args
                                 ? getArgsFunctionType(FT)
                                 : FT;
-      Function *NewF =
-          buildWrapperFunction(&F, std::string("dfsw$") + std::string(F.getName()),
-                               GlobalValue::LinkOnceODRLinkage, NewFT);
+      Function *NewF = buildWrapperFunction(
+          &F, std::string("dfsw$") + std::string(F.getName()),
+          GlobalValue::LinkOnceODRLinkage, NewFT);
       if (getInstrumentedABI() == IA_TLS)
         NewF->removeAttributes(AttributeSet::FunctionIndex, ReadOnlyNoneAttrs);
 





More information about the llvm-commits mailing list