diff options
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.h')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.h b/llvm/lib/CodeGen/LiveDebugVariables.h index a69b974fe37..a6e40a19845 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.h +++ b/llvm/lib/CodeGen/LiveDebugVariables.h @@ -25,6 +25,8 @@ namespace llvm { +class VirtRegMap; + class LiveDebugVariables : public MachineFunctionPass { void *pImpl; public: @@ -42,7 +44,8 @@ public: /// emitDebugValues - Emit new DBG_VALUE instructions reflecting the changes /// that happened during register allocation. - void emitDebugValues(); + /// @param VRM Rename virtual registers according to map. + void emitDebugValues(VirtRegMap *VRM); /// dump - Print data structures to dbgs(). void dump(); |