diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-17 23:22:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-17 23:22:13 +0000 |
commit | af55be15dfa5321f470ce9734fabd858f5af7a88 (patch) | |
tree | f7e31e81a0bbe55ff4efff47bd9bd9aa9fdebe4e /include/llvm/CodeGen/MachineInstr.h | |
parent | 3b49394f4fa37f6a2086e5a91d934385baeeddbf (diff) |
Print is const!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4737 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 421d753d10..fb6e46040a 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -347,7 +347,7 @@ public: // // Debugging support // - void print(std::ostream &OS, const TargetMachine &TM); + void print(std::ostream &OS, const TargetMachine &TM) const; void dump() const; friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr); |