mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
Rename MRegisterInfo to TargetRegisterInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46930 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
|
||||
namespace llvm {
|
||||
class MachineInstr;
|
||||
class MRegisterInfo;
|
||||
class TargetRegisterInfo;
|
||||
struct LiveInterval;
|
||||
|
||||
/// VNInfo - If the value number definition is undefined (e.g. phi
|
||||
@@ -346,9 +346,9 @@ namespace llvm {
|
||||
return beginNumber() < other.beginNumber();
|
||||
}
|
||||
|
||||
void print(std::ostream &OS, const MRegisterInfo *MRI = 0) const;
|
||||
void print(std::ostream *OS, const MRegisterInfo *MRI = 0) const {
|
||||
if (OS) print(*OS, MRI);
|
||||
void print(std::ostream &OS, const TargetRegisterInfo *TRI = 0) const;
|
||||
void print(std::ostream *OS, const TargetRegisterInfo *TRI = 0) const {
|
||||
if (OS) print(*OS, TRI);
|
||||
}
|
||||
void dump() const;
|
||||
|
||||
|
Reference in New Issue
Block a user