diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-11-08 05:23:45 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-11-08 05:23:45 +0000 |
commit | 9b19894da9d9bdd101ba90c51c9fd99d91a04314 (patch) | |
tree | db02f2964ab0596bc8d3f8369b03af9de550ff77 | |
parent | 1c84e2a7d35e5e4094db958a8f982420a4b1243b (diff) |
Add handle to object MachineFrameInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1202 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetMachine.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h index c66a43f693..ee3effa280 100644 --- a/include/llvm/Target/TargetMachine.h +++ b/include/llvm/Target/TargetMachine.h @@ -15,6 +15,7 @@ class MachineInstrInfo; class MachineInstrDescriptor; class MachineSchedInfo; class MachineRegInfo; +class MachineFrameInfo; //--------------------------------------------------------------------------- // Data types used to define information about a single machine instruction @@ -60,9 +61,10 @@ public: // -- Pipelines and scheduling information // -- Register information // - virtual const MachineInstrInfo& getInstrInfo() const = 0; - virtual const MachineSchedInfo& getSchedInfo() const = 0; - virtual const MachineRegInfo& getRegInfo() const = 0; + virtual const MachineInstrInfo& getInstrInfo() const = 0; + virtual const MachineSchedInfo& getSchedInfo() const = 0; + virtual const MachineRegInfo& getRegInfo() const = 0; + virtual const MachineFrameInfo& getFrameInfo() const = 0; // // Data storage information |