Fix indentation.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 11 Mar 2004 23:53:51 +0000 (23:53 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 11 Mar 2004 23:53:51 +0000 (23:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12298 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/iMemory.cpp

index 917692e8963885f057a0839aef9845fe0ca20abf..7c8f66599f50b4ab68b7a5028938d2b5860bdaa7 100644 (file)
@@ -116,8 +116,8 @@ static inline const Type *checkType(const Type *Ty) {
 GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
                                     const std::string &Name, Instruction *InBe)
   : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
-                                                            Idx, true))),
-                 GetElementPtr, Name, InBe) {
+                                                          Idx, true))),
+                GetElementPtr, Name, InBe) {
   Operands.reserve(1+Idx.size());
   Operands.push_back(Use(Ptr, this));