diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-12-29 03:13:05 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-12-29 03:13:05 +0000 |
| commit | d0f166a4868c957041fa0ca0a35adde97aa10c91 (patch) | |
| tree | dc6013e61309e7de60b71bcc744efd717d4c537c /include/llvm/Target/TargetMachine.h | |
| parent | f27eeea54fb0176986f76731c499176345047dff (diff) | |
More renamings of Target/Machine*Info to Target/Target*Info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5204 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetMachine.h')
| -rw-r--r-- | include/llvm/Target/TargetMachine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h index f7db820e6a..b4d5daa41c 100644 --- a/include/llvm/Target/TargetMachine.h +++ b/include/llvm/Target/TargetMachine.h @@ -12,8 +12,8 @@ class MachineInstrInfo; class MachineInstrDescriptor; -class MachineSchedInfo; -class MachineRegInfo; +class TargetSchedInfo; +class TargetRegInfo; class TargetFrameInfo; class TargetCacheInfo; class TargetOptInfo; @@ -57,8 +57,8 @@ public: // -- Machine-level optimization information (peephole only) // virtual const MachineInstrInfo& getInstrInfo() const = 0; - virtual const MachineSchedInfo& getSchedInfo() const = 0; - virtual const MachineRegInfo& getRegInfo() const = 0; + virtual const TargetSchedInfo& getSchedInfo() const = 0; + virtual const TargetRegInfo& getRegInfo() const = 0; virtual const TargetFrameInfo& getFrameInfo() const = 0; virtual const TargetCacheInfo& getCacheInfo() const = 0; virtual const TargetOptInfo& getOptInfo() const = 0; |
