Hrm, a relic from the past. How cute :)
[oota-llvm.git] / lib / ExecutionEngine / JIT / JITEmitter.cpp
index d25aaa3e4a3d0e52444178cb2d3f8e5022134b8b..6dd2d56f7f2044a490baca5c3c5f8e62213a3c62 100644 (file)
@@ -21,7 +21,7 @@
 #include "Config/sys/mman.h"
 
 namespace {
-  Statistic<> NumBytes("jello", "Number of bytes of machine code compiled");
+  Statistic<> NumBytes("jit", "Number of bytes of machine code compiled");
   VM *TheVM = 0;
 
   /// JITMemoryManager - Manage memory for the JIT code generation in a logical,
@@ -116,7 +116,7 @@ void JITMemoryManager::endFunctionBody(unsigned char *FunctionEnd) {
 
 
 namespace {
-  /// Emitter - The JIT implementation of the MachineCodeEmiter, which is used
+  /// Emitter - The JIT implementation of the MachineCodeEmitter, which is used
   /// to output functions to memory for execution.
   class Emitter : public MachineCodeEmitter {
     JITMemoryManager MemMgr;
@@ -215,7 +215,6 @@ void Emitter::emitWord(unsigned W) {
   CurByte += sizeof(unsigned);
 }
 
-
 uint64_t Emitter::getGlobalValueAddress(GlobalValue *V) {
   // Try looking up the function to see if it is already compiled, if not return
   // 0.