Fix a typo in a comment, and zap a blank line.
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 16 Oct 2003 23:33:38 +0000 (23:33 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 16 Oct 2003 23:33:38 +0000 (23:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9184 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JITEmitter.cpp

index d25aaa3e4a3d0e52444178cb2d3f8e5022134b8b..94fef6a0ae7794d03e1178c0071fe9fd2d8623da 100644 (file)
@@ -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.