summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-01 13:32:03 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-01 13:32:03 +0000
commit44fee4e0eb62c691d80ed5f36cb96321b4167a6d (patch)
tree76606fd558ae8eb98363e8e98caffdaff04cc734 /llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
parentad864049d68d44445f2eae5d186179299a86d217 (diff)
downloadbcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.tar.gz
bcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.zip
Remove several unused variables.
Patch by Alp Toker. llvm-svn: 191757
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r--llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 8f8af20cee1..7ced56bedd2 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -927,8 +927,7 @@ bool AddressSanitizerModule::runOnModule(Module &M) {
StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
IntptrTy, IntptrTy,
IntptrTy, IntptrTy, NULL);
- SmallVector<Constant *, 16> Initializers(n), DynamicInit;
-
+ SmallVector<Constant *, 16> Initializers(n);
Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
assert(CtorFunc);
OpenPOWER on IntegriCloud