summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineCodeEmitter.h
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 /include/llvm/CodeGen/MachineCodeEmitter.h
parenta726c7f1fd3c3b75bbb3df8faa7676ef09cb15c8 (diff)
downloadllvm-f5d438c1f0e0c0ed44475ab69f03d86a3c818c60.tar.gz
llvm-f5d438c1f0e0c0ed44475ab69f03d86a3c818c60.tar.bz2
llvm-f5d438c1f0e0c0ed44475ab69f03d86a3c818c60.tar.xz
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 'include/llvm/CodeGen/MachineCodeEmitter.h')
-rw-r--r--include/llvm/CodeGen/MachineCodeEmitter.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineCodeEmitter.h b/include/llvm/CodeGen/MachineCodeEmitter.h
index 7f171b6f4d..58e232d341 100644
--- a/include/llvm/CodeGen/MachineCodeEmitter.h
+++ b/include/llvm/CodeGen/MachineCodeEmitter.h
@@ -166,9 +166,6 @@ public:
/// 'Index' in the function that last called initJumpTableInfo.
///
virtual uint64_t getJumpTableEntryAddress(unsigned Index) = 0;
-
- // allocateGlobal - Allocate some space for a global variable.
- virtual unsigned char* allocateGlobal(unsigned size, unsigned alignment) = 0;
};
} // End llvm namespace