diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-19 23:59:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-19 23:59:57 +0000 |
commit | d5fb7906130989a579d1bfe4490b414331e94fee (patch) | |
tree | 4c9421c0a78c150d4979e818abeb395e78b2e5d5 /include/llvm/CodeGen/MachineInstr.h | |
parent | 5b842c369097b22e0abca58bfc49e63919b28a58 (diff) |
stub out some hacky code for wiring up the new asmprinter interfaces
on X86. Not useful yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73799 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index ab749287b9..2b2f24a883 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -104,7 +104,7 @@ public: /// getDebugLoc - Returns the debug location id of this MachineInstr. /// - const DebugLoc getDebugLoc() const { return debugLoc; } + DebugLoc getDebugLoc() const { return debugLoc; } /// getDesc - Returns the target instruction descriptor of this /// MachineInstr. |