diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-02 21:57:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-02 21:57:51 +0000 |
commit | 23621fe8f4a0c29db9f4d4937a40e28e6b11279e (patch) | |
tree | 1188886719b46ad7fb16d8c83749e4a1de686d9e /llvm/lib/CodeGen/ELFWriter.cpp | |
parent | 25b95ed8680fe742abf027bd878ffdfd3a721355 (diff) | |
download | bcm5719-llvm-23621fe8f4a0c29db9f4d4937a40e28e6b11279e.tar.gz bcm5719-llvm-23621fe8f4a0c29db9f4d4937a40e28e6b11279e.zip |
Do not make the JIT memory manager manage the memory for globals. Instead
just have the JIT malloc them.
llvm-svn: 28062
Diffstat (limited to 'llvm/lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ELFWriter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index c03b6272b56..483c49059c4 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/lib/CodeGen/ELFWriter.cpp @@ -73,10 +73,6 @@ namespace llvm { assert(0 && "JT not implementated yet!"); return 0; } - virtual unsigned char* allocateGlobal(unsigned size, unsigned alignment) { - assert(0 && "Globals not implemented yet!"); - return 0; - } /// JIT SPECIFIC FUNCTIONS - DO NOT IMPLEMENT THESE HERE! void startFunctionStub(unsigned StubSize) { |