mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs and fixes here and there.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123170 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -17,12 +17,12 @@
|
||||
|
||||
#include "MSP430InstrInfo.h"
|
||||
#include "MSP430ISelLowering.h"
|
||||
#include "MSP430FrameInfo.h"
|
||||
#include "MSP430FrameLowering.h"
|
||||
#include "MSP430SelectionDAGInfo.h"
|
||||
#include "MSP430RegisterInfo.h"
|
||||
#include "MSP430Subtarget.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetFrameInfo.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
||||
namespace llvm {
|
||||
@@ -35,13 +35,15 @@ class MSP430TargetMachine : public LLVMTargetMachine {
|
||||
MSP430InstrInfo InstrInfo;
|
||||
MSP430TargetLowering TLInfo;
|
||||
MSP430SelectionDAGInfo TSInfo;
|
||||
MSP430FrameInfo FrameInfo;
|
||||
MSP430FrameLowering FrameLowering;
|
||||
|
||||
public:
|
||||
MSP430TargetMachine(const Target &T, const std::string &TT,
|
||||
const std::string &FS);
|
||||
|
||||
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
|
||||
virtual const TargetFrameLowering *getFrameLowering() const {
|
||||
return &FrameLowering;
|
||||
}
|
||||
virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
|
||||
virtual const TargetData *getTargetData() const { return &DataLayout;}
|
||||
virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
|
||||
|
Reference in New Issue
Block a user