80 cols
authorAlexey Samsonov <samsonov@google.com>
Fri, 23 Aug 2013 07:42:51 +0000 (07:42 +0000)
committerAlexey Samsonov <samsonov@google.com>
Fri, 23 Aug 2013 07:42:51 +0000 (07:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189091 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/DataFlowSanitizer.cpp

index 1bf6b99ea978efef9b40ea2f0bae84664ed48b76..232893dac36a1b7c883737918a6250fc3889819f 100644 (file)
@@ -561,9 +561,9 @@ bool DataFlowSanitizer::runOnModule(Module &M) {
       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);