From: Misha Brukman Date: Tue, 3 Jun 2003 20:00:49 +0000 (+0000) Subject: Pass through the emitConstantPool() call to the real emitter. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d720da23dbe2f2b4f9293a2edecd8b74ebd4b188;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp index af41ce468cf..47bdc8b7799 100644 --- a/lib/CodeGen/MachineCodeEmitter.cpp +++ b/lib/CodeGen/MachineCodeEmitter.cpp @@ -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); }