mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
Move the subtarget dependent features from the target machine to
the subtarget for the MSP430 target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -25,12 +25,15 @@ using namespace llvm;
|
||||
|
||||
void MSP430Subtarget::anchor() { }
|
||||
|
||||
MSP430Subtarget::MSP430Subtarget(const std::string &TT,
|
||||
const std::string &CPU,
|
||||
const std::string &FS) :
|
||||
MSP430GenSubtargetInfo(TT, CPU, FS) {
|
||||
std::string CPUName = "generic";
|
||||
|
||||
// Parse features string.
|
||||
ParseSubtargetFeatures(CPUName, FS);
|
||||
MSP430Subtarget &MSP430Subtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) {
|
||||
ParseSubtargetFeatures("generic", FS);
|
||||
return *this;
|
||||
}
|
||||
|
||||
MSP430Subtarget::MSP430Subtarget(const std::string &TT, const std::string &CPU,
|
||||
const std::string &FS, const TargetMachine &TM)
|
||||
: MSP430GenSubtargetInfo(TT, CPU, FS),
|
||||
// FIXME: Check DataLayout string.
|
||||
DL("e-m:e-p:16:16-i32:16:32-n8:16"), FrameLowering(),
|
||||
InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM),
|
||||
TSInfo(DL) {}
|
||||
|
Reference in New Issue
Block a user