diff --git a/libclambcc/ClamBCRemovePointerPHIs.cpp b/libclambcc/ClamBCRemovePointerPHIs.cpp index 1e6299362f..d7d20d842a 100644 --- a/libclambcc/ClamBCRemovePointerPHIs.cpp +++ b/libclambcc/ClamBCRemovePointerPHIs.cpp @@ -186,9 +186,6 @@ class ClamBCRemovePointerPHIs : public PassInfoMixin return false; } - - DEBUG_VALUE(pn); - IntegerType *pType = Type::getInt64Ty(pMod->getContext()); Constant *zero = ConstantInt::get(pType, 0); Value *initValue = zero; @@ -240,15 +237,6 @@ class ClamBCRemovePointerPHIs : public PassInfoMixin } Type *elementType = pt->getPointerElementType(); - DEBUG_VALUE(pn); - DEBUG_VALUE(pBasePtr); - DEBUG_VALUE(pn->getType()); - DEBUG_VALUE(pBasePtr->getType()); - DEBUG_NONPOINTER((pBasePtr->getType() == pn->getType())); - - DEBUG_VALUE(pBasePtr); - DEBUG_VALUE(elementType); - Instruction *gepiNew = GetElementPtrInst::Create(elementType, pBasePtr, idxNode, "ClamBCRemovePointerPHIs_gepi_", insPt); if (pn->getType() != gepiNew->getType()) { gepiNew = CastInst::CreatePointerCast(gepiNew, pn->getType(), "ClamBCRemovePointerPHIs_cast_", insPt);