NFC: Remove stray logging from ~Block().

PiperOrigin-RevId: 269941815
This commit is contained in:
River Riddle 2019-09-18 19:20:36 -07:00 committed by A. Unique TensorFlower
parent 35df51086a
commit 25f0f769aa

View File

@ -38,11 +38,6 @@ unsigned BlockArgument::getArgNumber() {
Block::~Block() {
assert(!verifyInstOrder() && "Expected valid operation ordering.");
clear();
for (auto *arg : arguments)
if (!arg->use_empty())
arg->user_begin()->dump();
llvm::DeleteContainerPointers(arguments);
}