diff --git a/src/llvm-multiversioning.cpp b/src/llvm-multiversioning.cpp index 6e9bbe85aa7f6..cbce76d702119 100644 --- a/src/llvm-multiversioning.cpp +++ b/src/llvm-multiversioning.cpp @@ -401,8 +401,6 @@ static inline std::vector consume_gv(Module &M, const char *name, bool allow // Strip them from the Module so that it's easier to handle the uses. GlobalVariable *gv = M.getGlobalVariable(name); assert(gv && gv->hasInitializer()); - dbgs() << "Consume " << *gv << ":\n"; - dbgs() << *gv->getType() << "\n"; ArrayType *Ty = cast(gv->getInitializer()->getType()); unsigned nele = Ty->getArrayNumElements(); std::vector res(nele); @@ -421,7 +419,6 @@ static inline std::vector consume_gv(Module &M, const char *name, bool allow nele--; continue; } - dbgs() << *val << ": " << *val->getType() << "\n"; res[i++] = cast(val); } res.resize(nele);