[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineCodeEmitter.h

Chris Lattner lattner at cs.uiuc.edu
Tue May 2 14:58:04 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

MachineCodeEmitter.h updated: 1.34 -> 1.35
---
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 -3)

 MachineCodeEmitter.h |    3 ---
 1 files changed, 3 deletions(-)


Index: llvm/include/llvm/CodeGen/MachineCodeEmitter.h
diff -u llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.34 llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.35
--- llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.34	Tue May  2 14:14:47 2006
+++ llvm/include/llvm/CodeGen/MachineCodeEmitter.h	Tue May  2 16:57:51 2006
@@ -166,9 +166,6 @@
   /// '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






More information about the llvm-commits mailing list