From d720da23dbe2f2b4f9293a2edecd8b74ebd4b188 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 3 Jun 2003 20:00:49 +0000 Subject: [PATCH] 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 --- lib/CodeGen/MachineCodeEmitter.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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); }