forked from OSchip/llvm-project
move the #include for the generated code into the isel class body so we
can use/define class methods llvm-svn: 23339
This commit is contained in:
parent
3556d849da
commit
03e08eefc7
|
@ -97,10 +97,12 @@ namespace {
|
||||||
virtual const char *getPassName() const {
|
virtual const char *getPassName() const {
|
||||||
return "PowerPC DAG->DAG Pattern Instruction Selection";
|
return "PowerPC DAG->DAG Pattern Instruction Selection";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Include the pieces autogenerated from the target description.
|
||||||
|
#include "PPC32GenDAGISel.inc"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "PPC32GenDAGISel.inc"
|
|
||||||
|
|
||||||
/// getGlobalBaseReg - Output the instructions required to put the
|
/// getGlobalBaseReg - Output the instructions required to put the
|
||||||
/// base address to use for accessing globals into a register.
|
/// base address to use for accessing globals into a register.
|
||||||
|
|
Loading…
Reference in New Issue