reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
651 MaxType = ExprBuilder.getType(Iterator); 652 MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType()); 652 MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType()); 653 MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType()); 653 MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType()); 654 MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType()); 654 MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType()); 656 if (MaxType != ValueLB->getType()) 657 ValueLB = Builder.CreateSExt(ValueLB, MaxType); 658 if (MaxType != ValueUB->getType()) 659 ValueUB = Builder.CreateSExt(ValueUB, MaxType); 660 if (MaxType != ValueInc->getType()) 661 ValueInc = Builder.CreateSExt(ValueInc, MaxType);