aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ELFWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-02 21:57:51 +0000
committerChris Lattner <sabre@nondot.org>2006-05-02 21:57:51 +0000
commitf5d438c1f0e0c0ed44475ab69f03d86a3c818c60 (patch)
treea8021c4814c092296c84e22700f88bbf5388cd8e /lib/CodeGen/ELFWriter.cpp
parenta726c7f1fd3c3b75bbb3df8faa7676ef09cb15c8 (diff)
Do not make the JIT memory manager manage the memory for globals. Instead
just have the JIT malloc them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r--lib/CodeGen/ELFWriter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp
index c03b6272b5..483c49059c 100644
--- a/lib/CodeGen/ELFWriter.cpp
+++ b/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) {