Fix stupid bug in my checkin yesterday

llvm-svn: 13429
This commit is contained in:
Chris Lattner 2004-05-08 22:41:42 +00:00
parent c69bb49340
commit 0efd1cb264

View File

@ -2624,8 +2624,7 @@ Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
bool EndsWithSequential = false;
for (gep_type_iterator I = gep_type_begin(*cast<User>(PtrOp)),
E = gep_type_end(*cast<User>(PtrOp)); I != E; ++I)
if (!isa<StructType>(*I))
EndsWithSequential = true;
EndsWithSequential = !isa<StructType>(*I);
// Can we combine the two pointer arithmetics offsets?
if (EndsWithSequential) {