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 @@ -232,9 +232,6 @@ class RecurrenceDescriptor {
232
232
// / Returns true if the recurrence kind is a floating point kind.
233
233
static bool isFloatingPointRecurrenceKind (RecurKind Kind);
234
234
235
- // / Returns true if the recurrence kind is arithmetic.
236
- static bool isArithmeticRecurrenceKind (RecurKind Kind);
237
-
238
235
// / Returns true if the recurrence kind is an integer min/max kind.
239
236
static bool isIntMinMaxRecurrenceKind (RecurKind Kind) {
240
237
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