[llvm-commits] [llvm] r82358 - in /llvm/trunk/include/llvm: CodeGen/MachineInstrBuilder.h Support/GraphWriter.h

Daniel Dunbar daniel at zuster.org
Sat Sep 19 21:03:25 PDT 2009


Author: ddunbar
Date: Sat Sep 19 23:03:25 2009
New Revision: 82358

URL: http://llvm.org/viewvc/llvm-project?rev=82358&view=rev
Log:
A few more tabs -> spaces.

Modified:
    llvm/trunk/include/llvm/CodeGen/MachineInstrBuilder.h
    llvm/trunk/include/llvm/Support/GraphWriter.h

Modified: llvm/trunk/include/llvm/CodeGen/MachineInstrBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineInstrBuilder.h?rev=82358&r1=82357&r2=82358&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineInstrBuilder.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineInstrBuilder.h Sat Sep 19 23:03:25 2009
@@ -109,8 +109,8 @@
   }
 
   const MachineInstrBuilder &addMetadata(MDNode *N,
-					 int64_t Offset = 0,
-					 unsigned char TargetFlags = 0) const {
+                                         int64_t Offset = 0,
+                                         unsigned char TargetFlags = 0) const {
     MI->addOperand(MachineOperand::CreateMDNode(N, Offset, TargetFlags));
     return *this;
   }
@@ -191,7 +191,7 @@
 
 /// BuildMI - This version of the builder inserts the newly-built
 /// instruction at the end of the given MachineBasicBlock, and sets up the first
-/// operand as a destination virtual register. 
+/// operand as a destination virtual register.
 ///
 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB,
                                    DebugLoc DL,

Modified: llvm/trunk/include/llvm/Support/GraphWriter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/GraphWriter.h?rev=82358&r1=82357&r2=82358&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/GraphWriter.h (original)
+++ llvm/trunk/include/llvm/Support/GraphWriter.h Sat Sep 19 23:03:25 2009
@@ -45,7 +45,7 @@
       CIRCO
    };
 }
-   
+
 void DisplayGraph(const sys::Path& Filename, bool wait=true, GraphProgram::Name program = GraphProgram::DOT);
 
 template<typename GraphType>
@@ -223,9 +223,9 @@
     O << " -> Node" << DestNodeID;
     if (DestNodePort >= 0) {
       if (DOTTraits::hasEdgeDestLabels())
-	O << ":d" << DestNodePort;
+        O << ":d" << DestNodePort;
       else
-	O << ":s" << DestNodePort;
+        O << ":s" << DestNodePort;
     }
 
     if (!Attrs.empty())





More information about the llvm-commits mailing list