From: Misha Brukman Date: Thu, 11 Mar 2004 23:53:51 +0000 (+0000) Subject: Fix indentation. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ec85af16a0a5ad69e79fde0c048886b2c615dd2e;p=oota-llvm.git Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12298 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/iMemory.cpp b/lib/VMCore/iMemory.cpp index 917692e8963..7c8f66599f5 100644 --- a/lib/VMCore/iMemory.cpp +++ b/lib/VMCore/iMemory.cpp @@ -116,8 +116,8 @@ static inline const Type *checkType(const Type *Ty) { GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector &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));