diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-05-23 21:50:12 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-05-23 21:50:12 +0000 |
| commit | b5aa97ecc5f448e48fd11dbd609f459fbaca8ff9 (patch) | |
| tree | 16c49c4863d44133b046a4b6f3435d70f8ce4682 /lldb/utils/test | |
| parent | 79763a42ab5115c21e4a1404cea1c7adf19ef410 (diff) | |
| download | bcm5719-llvm-b5aa97ecc5f448e48fd11dbd609f459fbaca8ff9.tar.gz bcm5719-llvm-b5aa97ecc5f448e48fd11dbd609f459fbaca8ff9.zip | |
Add a Python utility to help convert the Mail.app saved 'Raw Message Source' .eml file to a git-am friendly file.
llvm-svn: 131924
Diffstat (limited to 'lldb/utils/test')
| -rwxr-xr-x | lldb/utils/test/lldb-disasm.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/utils/test/lldb-disasm.py b/lldb/utils/test/lldb-disasm.py index 022a70f7bd4..48c286172ea 100755 --- a/lldb/utils/test/lldb-disasm.py +++ b/lldb/utils/test/lldb-disasm.py @@ -137,11 +137,11 @@ def do_lldb_disassembly(lldb_commands, exe, disassemble_options, num_symbols, sy count = count + 1 print "returning symbol:", s.GetName() yield s.GetName() - #print "start address:", s.GetStartAddress() - #print "end address:", s.GetEndAddress() - #s.GetDescription(stream) - #print "symbol description:", stream.GetData() - #stream.Clear() + print "start address:", s.GetStartAddress() + print "end address:", s.GetEndAddress() + s.GetDescription(stream) + print "symbol description:", stream.GetData() + stream.Clear() # Disassembly time. for symbol in symbol_iter(num_symbols, symbols_to_disassemble, target): |

