projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35df510
)
NFC: Remove stray logging from ~Block().
author
River Riddle
<riverriddle@google.com>
Thu, 19 Sep 2019 02:20:36 +0000
(19:20 -0700)
committer
A. Unique TensorFlower
<gardener@tensorflow.org>
Thu, 19 Sep 2019 02:21:05 +0000
(19:21 -0700)
PiperOrigin-RevId:
269941815
mlir/lib/IR/Block.cpp
patch
|
blob
|
history
diff --git
a/mlir/lib/IR/Block.cpp
b/mlir/lib/IR/Block.cpp
index
a225c4d
..
741837f
100644
(file)
--- a/
mlir/lib/IR/Block.cpp
+++ b/
mlir/lib/IR/Block.cpp
@@
-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);
}