[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp

Jeff Cohen jeffc at jolt-lang.org
Sat Jul 30 11:33:38 PDT 2005



Changes in directory llvm/lib/ExecutionEngine/JIT:

JITEmitter.cpp updated: 1.74 -> 1.75
---
Log message:

Keep tabs and trailing spaces out.

---
Diffs of the changes:  (+4 -4)

 JITEmitter.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp:1.74 llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp:1.75
--- llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp:1.74	Fri Jul 29 18:40:16 2005
+++ llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp	Sat Jul 30 13:33:25 2005
@@ -65,7 +65,7 @@
     inline unsigned char *allocateStub(unsigned StubSize);
     inline unsigned char *allocateConstant(unsigned ConstantSize,
                                            unsigned Alignment);
-    inline unsigned char* allocateGlobal(unsigned Size, 
+    inline unsigned char* allocateGlobal(unsigned Size,
                                          unsigned Alignment);
     inline unsigned char *startFunctionBody();
     inline void endFunctionBody(unsigned char *FunctionEnd);
@@ -373,8 +373,8 @@
 
   // FIXME: We could rewrite all references to this stub if we knew them.
 
-  // What we will do is set the compiled function address to map to the 
-  // same GOT entry as the stub so that later clients may update the GOT 
+  // What we will do is set the compiled function address to map to the
+  // same GOT entry as the stub so that later clients may update the GOT
   // if they see it still using the stub address.
   // Note: this is done so the Resolver doesn't have to manage GOT memory
   // Do this without allocating map space if the target isn't using a GOT
@@ -548,7 +548,7 @@
   if(MemMgr.isManagingGOT()) {
     unsigned idx = getJITResolver(this).getGOTIndexForAddr((void*)CurBlock);
     if (((void**)MemMgr.getGOTBase())[idx] != (void*)CurBlock) {
-      DEBUG(std::cerr << "GOT was out of date for " << (void*)CurBlock 
+      DEBUG(std::cerr << "GOT was out of date for " << (void*)CurBlock
             << " pointing at " << ((void**)MemMgr.getGOTBase())[idx] << "\n");
       ((void**)MemMgr.getGOTBase())[idx] = (void*)CurBlock;
     }






More information about the llvm-commits mailing list