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:
26466c0
)
Print out nicer dump info for DIDescriptor.
author
Bill Wendling
<isanbard@gmail.com>
Fri, 8 May 2009 20:28:06 +0000
(20:28 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Fri, 8 May 2009 20:28:06 +0000
(20:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71253
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/DebugInfo.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/DebugInfo.cpp
b/lib/Analysis/DebugInfo.cpp
index 181f3e9eff19533ce8064af7f482b6a2d7708769..50f54f59ee3caeca3de7be4d1072397319838231 100644
(file)
--- a/
lib/Analysis/DebugInfo.cpp
+++ b/
lib/Analysis/DebugInfo.cpp
@@
-983,7
+983,8
@@
namespace llvm {
/// dump - print descriptor.
void DIDescriptor::dump() const {
- cerr << " [" << dwarf::TagString(getTag()) << "]\n";
+ cerr << "[" << dwarf::TagString(getTag()) << "] ";
+ cerr << std::hex << "[GV:" << GV << "]" << std::dec;
}
/// dump - print compile unit.