File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,6 @@ class RecurrenceDescriptor {
230230 // / Returns true if the recurrence kind is a floating point kind.
231231 static bool isFloatingPointRecurrenceKind (RecurKind Kind);
232232
233- // / Returns true if the recurrence kind is arithmetic.
234- static bool isArithmeticRecurrenceKind (RecurKind Kind);
235-
236233 // / Returns true if the recurrence kind is an integer min/max kind.
237234 static bool isIntMinMaxRecurrenceKind (RecurKind Kind) {
238235 return Kind == RecurKind::UMin || Kind == RecurKind::UMax ||
Original file line number Diff line number Diff line change @@ -62,11 +62,6 @@ bool RecurrenceDescriptor::isFloatingPointRecurrenceKind(RecurKind Kind) {
6262 return (Kind != RecurKind::None) && !isIntegerRecurrenceKind (Kind);
6363}
6464
65- bool RecurrenceDescriptor::isArithmeticRecurrenceKind (RecurKind Kind) {
66- return (Kind != RecurKind::None) && !isMinMaxRecurrenceKind (Kind) &&
67- !isAnyOfRecurrenceKind (Kind);
68- }
69-
7065// / Determines if Phi may have been type-promoted. If Phi has a single user
7166// / that ANDs the Phi with a type mask, return the user. RT is updated to
7267// / account for the narrower bit width represented by the mask, and the AND
You can’t perform that action at this time.
0 commit comments