From 1ede29c9511a50c7a9a77178e2cfff538daa0347 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 1 Mar 2007 19:48:16 +0000 Subject: [PATCH] Wrap a long line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34799 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/TargetData.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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... -- 2.34.1