commit | d720da23dbe2f2b4f9293a2edecd8b74ebd4b188 | [log] [tgz] |
---|---|---|
author | Misha Brukman <brukman+llvm@gmail.com> | Tue Jun 03 20:00:49 2003 +0000 |
committer | Misha Brukman <brukman+llvm@gmail.com> | Tue Jun 03 20:00:49 2003 +0000 |
tree | c59c4f012690c7bc67ea7f80865bcd8a05df6a80 | |
parent | fc97c8b2251aa47f0f753e4ef897fb5a7601036b [diff] [blame] |
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 af41ce4..47bdc8b 100644 --- a/lib/CodeGen/MachineCodeEmitter.cpp +++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -93,6 +93,10 @@ MCE.finishFunction(F); } + void emitConstantPool(MachineConstantPool *MCP) { + MCE.emitConstantPool(MCP); + } + void startFunctionStub(const Function &F, unsigned StubSize) { MCE.startFunctionStub(F, StubSize); }