forked from OSchip/llvm-project
parent
094fc7b09e
commit
3215eae4a3
|
@ -62,8 +62,6 @@ public:
|
|||
|
||||
virtual bool runOnMachineFunction(MachineFunction &MF);
|
||||
|
||||
unsigned MakeReg(EVT VT);
|
||||
|
||||
virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {}
|
||||
|
||||
/// PreprocessISelDAG - This hook allows targets to hack on the graph before
|
||||
|
|
|
@ -180,10 +180,6 @@ SelectionDAGISel::~SelectionDAGISel() {
|
|||
delete FuncInfo;
|
||||
}
|
||||
|
||||
unsigned SelectionDAGISel::MakeReg(EVT VT) {
|
||||
return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
|
||||
}
|
||||
|
||||
void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.addRequired<AliasAnalysis>();
|
||||
AU.addPreserved<AliasAnalysis>();
|
||||
|
|
Loading…
Reference in New Issue