diff options
author | Devang Patel <dpatel@apple.com> | 2011-04-26 00:12:46 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-04-26 00:12:46 +0000 |
commit | cae2fbd6fc0bc67a881aa6f7fc5e66432d744c63 (patch) | |
tree | 9d3b0dd9b527ed332ac2bbd5463e2f7b7147a872 /llvm/lib/Target/ARM/ARMAsmPrinter.h | |
parent | 420c8de92ec04e30b5c5a69d315675a78ddaacb2 (diff) | |
download | bcm5719-llvm-cae2fbd6fc0bc67a881aa6f7fc5e66432d744c63.tar.gz bcm5719-llvm-cae2fbd6fc0bc67a881aa6f7fc5e66432d744c63.zip |
Let dwarf writer allocate extra space in the debug location expression. This space, if requested, will be used for complex addresses of the Blocks' variables.
llvm-svn: 130178
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmPrinter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.h b/llvm/lib/Target/ARM/ARMAsmPrinter.h index 5f9169ef7f7..e94901449a1 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.h +++ b/llvm/lib/Target/ARM/ARMAsmPrinter.h @@ -90,7 +90,8 @@ public: MachineLocation getDebugValueLocation(const MachineInstr *MI) const; /// EmitDwarfRegOp - Emit dwarf register operation. - virtual void EmitDwarfRegOp(const MachineLocation &MLoc) const; + virtual void EmitDwarfRegOp(const MachineLocation &MLoc, + unsigned ExtraExprSize = 0) const; virtual unsigned getISAEncoding() { // ARM/Darwin adds ISA to the DWARF info for each function. |