projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f678dc6
)
Fix pure virtual function called exception!
author
Chris Lattner
<sabre@nondot.org>
Fri, 12 Apr 2002 18:19:45 +0000
(18:19 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 12 Apr 2002 18:19:45 +0000
(18:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2229
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Value.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Value.cpp
b/lib/VMCore/Value.cpp
index 7f28eb9d2875ba0675934e582db7e0ce6c332f2c..1309c566ad8b9408c9f610f5c20da8fa8b929a61 100644
(file)
--- a/
lib/VMCore/Value.cpp
+++ b/
lib/VMCore/Value.cpp
@@
-33,8
+33,7
@@
Value::~Value() {
// a <badref>
//
if (Uses.begin() != Uses.end()) {
- std::cerr << "While deleting: ";
- dump();
+ std::cerr << "While deleting: " << Ty << "%" << Name << "\n";
for (use_const_iterator I = Uses.begin(); I != Uses.end(); ++I) {
std::cerr << "Use still stuck around after Def is destroyed:";
(*I)->dump();