diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-07-25 00:06:28 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-07-25 00:06:28 +0000 |
| commit | 64b64ae591820cb42e59921ee1e46d07813456c6 (patch) | |
| tree | aec61fb5231c06c20ced62b419eafa860a44fd67 /llvm/lib/CodeGen/DwarfWriter.cpp | |
| parent | f0bb12848f40f657af5f935ce61354674afa6a39 (diff) | |
| download | bcm5719-llvm-64b64ae591820cb42e59921ee1e46d07813456c6.tar.gz bcm5719-llvm-64b64ae591820cb42e59921ee1e46d07813456c6.zip | |
Minor cleanup:
- Split EH and debug infiormation
- Make DwarfWriter more verbose in some cases
llvm-svn: 40481
Diffstat (limited to 'llvm/lib/CodeGen/DwarfWriter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index e157e58bd4c..9d54d42960c 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/DwarfWriter.cpp @@ -1041,7 +1041,7 @@ public: Asm->EOL("Offset"); } else if (Reg < 64) { Asm->EmitInt8(DW_CFA_offset + Reg); - Asm->EOL("DW_CFA_offset + Reg"); + Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")"); Asm->EmitULEB128Bytes(Offset); Asm->EOL("Offset"); } else { |

