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 {
230
230
// / Returns true if the recurrence kind is a floating point kind.
231
231
static bool isFloatingPointRecurrenceKind (RecurKind Kind);
232
232
233
- // / Returns true if the recurrence kind is arithmetic.
234
- static bool isArithmeticRecurrenceKind (RecurKind Kind);
235
-
236
233
// / Returns true if the recurrence kind is an integer min/max kind.
237
234
static bool isIntMinMaxRecurrenceKind (RecurKind Kind) {
238
235
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) {
62
62
return (Kind != RecurKind::None) && !isIntegerRecurrenceKind (Kind);
63
63
}
64
64
65
- bool RecurrenceDescriptor::isArithmeticRecurrenceKind (RecurKind Kind) {
66
- return (Kind != RecurKind::None) && !isMinMaxRecurrenceKind (Kind) &&
67
- !isAnyOfRecurrenceKind (Kind);
68
- }
69
-
70
65
// / Determines if Phi may have been type-promoted. If Phi has a single user
71
66
// / that ANDs the Phi with a type mask, return the user. RT is updated to
72
67
// / 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