Pass through the emitConstantPool() call to the real emitter.

llvm-svn: 6590
This commit is contained in:
Misha Brukman 2003-06-03 20:00:49 +00:00
parent 0caf021e69
commit a69a008010

View File

@ -93,6 +93,10 @@ namespace {
MCE.finishFunction(F);
}
void emitConstantPool(MachineConstantPool *MCP) {
MCE.emitConstantPool(MCP);
}
void startFunctionStub(const Function &F, unsigned StubSize) {
MCE.startFunctionStub(F, StubSize);
}