diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-04-05 22:44:57 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-04-05 22:44:57 +0000 |
commit | 1b01e7e26381f72a26be81d531ee02652fce4e59 (patch) | |
tree | 107e0bcf5445688e51e9e35957ad7de396227614 /llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp | |
parent | 64646029bf3cebb08f54e5f674c714c52b7543b3 (diff) | |
download | bcm5719-llvm-1b01e7e26381f72a26be81d531ee02652fce4e59.tar.gz bcm5719-llvm-1b01e7e26381f72a26be81d531ee02652fce4e59.zip |
clang-format my last commit
llvm-svn: 234127
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp index 7aef8cf5ac0..a838bdacc56 100644 --- a/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp @@ -1472,7 +1472,8 @@ void DFSanVisitor::visitCallSite(CallSite CS) { Args.push_back(DFSF.getShadow(*i)); if (FT->isVarArg()) { - auto *LabelVATy = ArrayType::get(DFSF.DFS.ShadowTy, CS.arg_size() - FT->getNumParams()); + auto *LabelVATy = ArrayType::get(DFSF.DFS.ShadowTy, + CS.arg_size() - FT->getNumParams()); auto *LabelVAAlloca = new AllocaInst(LabelVATy, "labelva", DFSF.F->getEntryBlock().begin()); |