From ac7d604ff80baa98d812836910a86e5a754985e6 Mon Sep 17 00:00:00 2001 From: Andy Ragusa Date: Fri, 3 May 2024 03:01:01 -0700 Subject: [PATCH] blah --- libclambcc/ClamBCRemovePointerPHIs.cpp | 12 ------------ 1 file changed, 12 deletions(-) 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);