[llvm-commits] CVS: llvm/lib/VMCore/Instructions.cpp

Misha Brukman brukman at cs.uiuc.edu
Tue Mar 15 21:42:11 PST 2005



Changes in directory llvm/lib/VMCore:

Instructions.cpp updated: 1.12 -> 1.13
---
Log message:

Convert tabs to spaces


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

 Instructions.cpp |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/lib/VMCore/Instructions.cpp
diff -u llvm/lib/VMCore/Instructions.cpp:1.12 llvm/lib/VMCore/Instructions.cpp:1.13
--- llvm/lib/VMCore/Instructions.cpp:1.12	Wed Feb 23 23:32:09 2005
+++ llvm/lib/VMCore/Instructions.cpp	Tue Mar 15 23:42:00 2005
@@ -604,7 +604,7 @@
 }
 
 GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
-				     const std::string &Name, Instruction *InBe)
+                                     const std::string &Name, Instruction *InBe)
   : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
                                                           Idx, true))),
                 GetElementPtr, 0, 0, Name, InBe) {
@@ -612,7 +612,7 @@
 }
 
 GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
-				     const std::string &Name, BasicBlock *IAE)
+                                     const std::string &Name, BasicBlock *IAE)
   : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
                                                           Idx, true))),
                 GetElementPtr, 0, 0, Name, IAE) {
@@ -628,7 +628,7 @@
 }
 
 GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
-		                     const std::string &Name, BasicBlock *IAE)
+                                     const std::string &Name, BasicBlock *IAE)
   : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
                                                           Idx0, Idx1, true))),
                 GetElementPtr, 0, 0, Name, IAE) {
@@ -738,7 +738,7 @@
 }
 
 BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
-				       const std::string &Name,
+                                       const std::string &Name,
                                        Instruction *InsertBefore) {
   assert(S1->getType() == S2->getType() &&
          "Cannot create binary operator with two operands of differing type!");
@@ -754,7 +754,7 @@
 }
 
 BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
-				       const std::string &Name,
+                                       const std::string &Name,
                                        BasicBlock *InsertAtEnd) {
   BinaryOperator *Res = create(Op, S1, S2, Name);
   InsertAtEnd->getInstList().push_back(Res);






More information about the llvm-commits mailing list