diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-08-23 07:42:51 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-08-23 07:42:51 +0000 |
commit | 6dae24df1677bd99842330c4a9429a88feda5cb5 (patch) | |
tree | 34c37c79ace6fcdb68cf9799270ee9d561928eba /llvm/lib/Transforms/Instrumentation | |
parent | 02b64d46a0ab8da426dadb1873ead648c8ef70e6 (diff) | |
download | bcm5719-llvm-6dae24df1677bd99842330c4a9429a88feda5cb5.tar.gz bcm5719-llvm-6dae24df1677bd99842330c4a9429a88feda5cb5.zip |
80 cols
llvm-svn: 189091
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp index 1bf6b99ea97..232893dac36 100644 --- a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp @@ -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); |