Currently, ARMGenSubtargetInfo (from ARM.td) is reaching the limit of 96:
enum : uint64_t { ... XScale = 95 };
We need to bump the maximum value up to accommodate future changes and/or customized subtarget definitions.
Differential D15514
Bump up MAX_SUBTARGET_FEATURES weimingz on Dec 14 2015, 6:21 PM. Authored by
Details Currently, ARMGenSubtargetInfo (from ARM.td) is reaching the limit of 96: enum : uint64_t { ... XScale = 95 }; We need to bump the maximum value up to accommodate future changes and/or customized subtarget definitions.
Diff Detail Event TimelineComment Actions 104 is a bit of an odd choice (not even an extra byte). I'd just bump it to 128, and hope we can leave it there for a while. Other than that, sure. Comment Actions Sorry, it is an extra byte (I've never been one for mental arithmetic: "is a natural number" has always sufficed). I'd still go for 128 though. |