You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The order of the regex matching the extensions was accidentally changed so that it doesn't match the order that riscv-config enforces. That means the CBO tests can never be selected.
I should also note that using regexes here is really bad engineering precisely because things like this are so likely to happen. A better engineered solution would use a set to store the set of extensions (clue's in the name) that the ISA string specifies.
The text was updated successfully, but these errors were encountered:
See this comment.
The order of the regex matching the extensions was accidentally changed so that it doesn't match the order that
riscv-config
enforces. That means the CBO tests can never be selected.I should also note that using regexes here is really bad engineering precisely because things like this are so likely to happen. A better engineered solution would use a set to store the set of extensions (clue's in the name) that the ISA string specifies.
The text was updated successfully, but these errors were encountered: