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 | a6c3f896dab8c1d82b4c9ffd471a4e3f71e40e8f (patch) | |
tree | 36b4de13cdd319382745231299ff4461a7786a43 /llvm/lib/CodeGen/MachineCodeEmitter.cpp | |
parent | 49e14432c24bd769c315dabbe779882a8a46eee4 (diff) | |
download | llvm-a6c3f896dab8c1d82b4c9ffd471a4e3f71e40e8f.zip llvm-a6c3f896dab8c1d82b4c9ffd471a4e3f71e40e8f.tar.gz llvm-a6c3f896dab8c1d82b4c9ffd471a4e3f71e40e8f.tar.bz2 |
Pass through the emitConstantPool() call to the real emitter.
llvm-svn: 6590
Diffstat (limited to 'llvm/lib/CodeGen/MachineCodeEmitter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineCodeEmitter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineCodeEmitter.cpp b/llvm/lib/CodeGen/MachineCodeEmitter.cpp index af41ce4..47bdc8b 100644 --- a/llvm/lib/CodeGen/MachineCodeEmitter.cpp +++ b/llvm/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); } |