diff options
author | Devang Patel <dpatel@apple.com> | 2009-09-30 23:12:50 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-09-30 23:12:50 +0000 |
commit | b0fdedb3fd123a47e7deca75d1e6f7d64218b07a (patch) | |
tree | 0c71b0de89919a8164ec6713239fc005365f793e /include/llvm | |
parent | 3d910835fc5da1ccddefd7cc5978ffe8c903cbf0 (diff) |
Use MachineInstr as an processDebugLoc() argument.
This will allow processDebugLoc() to handle scopes for DWARF debug info.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 918b5a6b4d..2f0e8d0541 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -358,7 +358,7 @@ namespace llvm { /// processDebugLoc - Processes the debug information of each machine /// instruction's DebugLoc. - void processDebugLoc(DebugLoc DL); + void processDebugLoc(const MachineInstr *MI); /// printInlineAsm - This method formats and prints the specified machine /// instruction that is an inline asm. |