Remove several unused variables.
[oota-llvm.git] / lib / Transforms / Instrumentation / AddressSanitizer.cpp
index 8f8af20cee182afb88e05dca3193a0c30f6fe7db..7ced56bedd2e81584f013a8016ec9d9248ec64e6 100644 (file)
@@ -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);