19 lines
517 B
C++
19 lines
517 B
C++
#include "FootSubtarget.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "foot-subtarget"
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
#include "FootGenSubtargetInfo.inc"
|
|
|
|
// Pin the vtable to this file.
|
|
void FootSubtarget::anchor() {}
|
|
|
|
FootSubtarget::FootSubtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM)
|
|
: FootGenSubtargetInfo(TT, CPU, "", FS), FrameLowering(*this), TLInfo(TM, *this) {}
|