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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-06-03 20:00:49 +00:00
parent fc97c8b225
commit d720da23db

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);
}