[llvm-commits] CVS: llvm/lib/CodeGen/ELFWriter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue May 2 14:58:05 PDT 2006
Changes in directory llvm/lib/CodeGen:
ELFWriter.cpp updated: 1.20 -> 1.21
---
Log message:
Do not make the JIT memory manager manage the memory for globals. Instead
just have the JIT malloc them.
---
Diffs of the changes: (+0 -4)
ELFWriter.cpp | 4 ----
1 files changed, 4 deletions(-)
Index: llvm/lib/CodeGen/ELFWriter.cpp
diff -u llvm/lib/CodeGen/ELFWriter.cpp:1.20 llvm/lib/CodeGen/ELFWriter.cpp:1.21
--- llvm/lib/CodeGen/ELFWriter.cpp:1.20 Tue May 2 13:27:26 2006
+++ llvm/lib/CodeGen/ELFWriter.cpp Tue May 2 16:57:51 2006
@@ -73,10 +73,6 @@
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) {
More information about the llvm-commits
mailing list