Pass through the emitConstantPool() call to the real emitter.
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 3 Jun 2003 20:00:49 +0000 (20:00 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 3 Jun 2003 20:00:49 +0000 (20:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6590 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineCodeEmitter.cpp

index af41ce468cf34bb6a2232e17fd9984b26710ca2d..47bdc8b7799cf5025ac15bcd46c753a602727ba4 100644 (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);
     }