From: Reid Spencer Date: Thu, 1 Mar 2007 19:48:16 +0000 (+0000) Subject: Wrap a long line. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1ede29c9511a50c7a9a77178e2cfff538daa0347;p=oota-llvm.git Wrap a long line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34799 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/TargetData.cpp b/lib/Target/TargetData.cpp index 16ff6bf1887..dfa6d2a283a 100644 --- a/lib/Target/TargetData.cpp +++ b/lib/Target/TargetData.cpp @@ -541,7 +541,8 @@ uint64_t TargetData::getIndexedOffset(const Type *ptrTy, Value* const* Indices, TI = gep_type_begin(ptrTy, Indices, Indices+NumIndices); for (unsigned CurIDX = 0; CurIDX != NumIndices; ++CurIDX, ++TI) { if (const StructType *STy = dyn_cast(*TI)) { - assert(Indices[CurIDX]->getType() == Type::Int32Ty &&"Illegal struct idx"); + assert(Indices[CurIDX]->getType() == Type::Int32Ty && + "Illegal struct idx"); unsigned FieldNo = cast(Indices[CurIDX])->getZExtValue(); // Get structure layout information...