[llvm-commits] [llvm] r47600 - in /llvm/trunk/lib/Target: IA64/IA64ISelLowering.h MSIL/MSILWriter.cpp X86/X86CodeEmitter.cpp

Bill Wendling isanbard at gmail.com
Tue Feb 26 02:57:25 PST 2008


Author: void
Date: Tue Feb 26 04:57:23 2008
New Revision: 47600

URL: http://llvm.org/viewvc/llvm-project?rev=47600&view=rev
Log:
De-tabify

Modified:
    llvm/trunk/lib/Target/IA64/IA64ISelLowering.h
    llvm/trunk/lib/Target/MSIL/MSILWriter.cpp
    llvm/trunk/lib/Target/X86/X86CodeEmitter.cpp

Modified: llvm/trunk/lib/Target/IA64/IA64ISelLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/IA64/IA64ISelLowering.h?rev=47600&r1=47599&r2=47600&view=diff

==============================================================================
--- llvm/trunk/lib/Target/IA64/IA64ISelLowering.h (original)
+++ llvm/trunk/lib/Target/IA64/IA64ISelLowering.h Tue Feb 26 04:57:23 2008
@@ -41,13 +41,11 @@
     int VarArgsFrameIndex;            // FrameIndex for start of varargs area.
     //int ReturnAddrIndex;              // FrameIndex for return slot.
     unsigned GP, SP, RP; // FIXME - clean this mess up
-	  
   public:
     explicit IA64TargetLowering(TargetMachine &TM);
 
     unsigned VirtGPR; // this is public so it can be accessed in the selector
                       // for ISD::RET. add an accessor instead? FIXME
-	    
     const char *getTargetNodeName(unsigned Opcode) const;
       
     /// LowerArguments - This hook must be implemented to indicate how we should

Modified: llvm/trunk/lib/Target/MSIL/MSILWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/MSIL/MSILWriter.cpp?rev=47600&r1=47599&r2=47600&view=diff

==============================================================================
--- llvm/trunk/lib/Target/MSIL/MSILWriter.cpp (original)
+++ llvm/trunk/lib/Target/MSIL/MSILWriter.cpp Tue Feb 26 04:57:23 2008
@@ -1,6 +1,6 @@
 //===-- MSILWriter.cpp - Library for converting LLVM code to MSIL ---------===//
 //
-//		       The LLVM Compiler Infrastructure
+//                     The LLVM Compiler Infrastructure
 //
 // This file is distributed under the University of Illinois Open Source
 // License. See LICENSE.TXT for details.
@@ -1640,7 +1640,7 @@
 
 
 //===----------------------------------------------------------------------===//
-//			 External Interface declaration
+//                      External Interface declaration
 //===----------------------------------------------------------------------===//
 
 bool MSILTarget::addPassesToEmitWholeFile(PassManager &PM, std::ostream &o,

Modified: llvm/trunk/lib/Target/X86/X86CodeEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86CodeEmitter.cpp?rev=47600&r1=47599&r2=47600&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86CodeEmitter.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86CodeEmitter.cpp Tue Feb 26 04:57:23 2008
@@ -271,8 +271,8 @@
   if (RelocOp->isGlobalAddress()) {
     // In 64-bit static small code model, we could potentially emit absolute.
     // But it's probably not beneficial.
-    //  89 05 00 00 00 00    	mov    %eax,0(%rip)  # PC-relative
-    //	89 04 25 00 00 00 00 	mov    %eax,0x0      # Absolute
+    //  89 05 00 00 00 00     mov    %eax,0(%rip)  # PC-relative
+    //  89 04 25 00 00 00 00  mov    %eax,0x0      # Absolute
     unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
       : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
     bool NeedStub = isa<Function>(RelocOp->getGlobal());





More information about the llvm-commits mailing list