From 9b19894da9d9bdd101ba90c51c9fd99d91a04314 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Thu, 8 Nov 2001 05:23:45 +0000 Subject: [PATCH] Add handle to object MachineFrameInfo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1202 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetMachine.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h index c66a43f693a..ee3effa280f 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 -- 2.34.1