diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-01 19:48:16 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-01 19:48:16 +0000 |
commit | 1ede29c9511a50c7a9a77178e2cfff538daa0347 (patch) | |
tree | 6b19012dde671e1dfc7c84a652eeebe8a6f4e8d0 /lib/Target/TargetData.cpp | |
parent | 4d050d73210d15d8a86ee5967c417ddb5bee4543 (diff) |
Wrap a long line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34799 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetData.cpp')
-rw-r--r-- | lib/Target/TargetData.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/TargetData.cpp b/lib/Target/TargetData.cpp index 16ff6bf188..dfa6d2a283 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<StructType>(*TI)) { - assert(Indices[CurIDX]->getType() == Type::Int32Ty &&"Illegal struct idx"); + assert(Indices[CurIDX]->getType() == Type::Int32Ty && + "Illegal struct idx"); unsigned FieldNo = cast<ConstantInt>(Indices[CurIDX])->getZExtValue(); // Get structure layout information... |