14 lines
282 B
TableGen
14 lines
282 B
TableGen
include "llvm/Target/Target.td"
|
|
|
|
include "FootRegisterInfo.td"
|
|
include "FootCallingConvention.td"
|
|
include "FootInstrInfo.td"
|
|
|
|
def : ProcessorModel<"generic", NoSchedModel, /*Features=*/[]>;
|
|
|
|
def FootInstrInfo : InstrInfo;
|
|
|
|
def Foot : Target {
|
|
let InstructionSet = FootInstrInfo;
|
|
}
|