diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-03 20:00:49 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-03 20:00:49 +0000 |
commit | d720da23dbe2f2b4f9293a2edecd8b74ebd4b188 (patch) | |
tree | c59c4f012690c7bc67ea7f80865bcd8a05df6a80 | |
parent | fc97c8b2251aa47f0f753e4ef897fb5a7601036b (diff) | |
download | external_llvm-d720da23dbe2f2b4f9293a2edecd8b74ebd4b188.zip external_llvm-d720da23dbe2f2b4f9293a2edecd8b74ebd4b188.tar.gz external_llvm-d720da23dbe2f2b4f9293a2edecd8b74ebd4b188.tar.bz2 |
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
-rw-r--r-- | lib/CodeGen/MachineCodeEmitter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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 @@ namespace { MCE.finishFunction(F); } + void emitConstantPool(MachineConstantPool *MCP) { + MCE.emitConstantPool(MCP); + } + void startFunctionStub(const Function &F, unsigned StubSize) { MCE.startFunctionStub(F, StubSize); } |