+2020-01-24 Jim Wilson <jimw@sifive.com>
+
+ * elfxx-riscv.c (riscv_get_prefix_class): Format s case like others.
+ (riscv_parse_prefixed_ext): Fix s extension comment and reword to
+ avoid over long line.
+
2020-01-24 Nick Clifton <nickc@redhat.com>
PR 25447
{
switch (*arch)
{
- case 's':
- return RV_ISA_CLASS_S;
-
+ case 's': return RV_ISA_CLASS_S;
case 'x': return RV_ISA_CLASS_X;
case 'z': return RV_ISA_CLASS_Z;
default: return RV_ISA_CLASS_UNKNOWN;
/* Check that the name is valid.
For 'x', anything goes but it cannot simply be 'x'.
- For 'z', it must be known from a list and also cannot simply be 'z'.
- For 's', it must be known from a list and also *can* simply be 's'. */
+ For 's', it must be known from a list and cannot simply be 's'.
+ For 'z', it must be known from a list and cannot simply be 'z'. */
/* Check that the extension name is well-formed. */
if (!config->ext_valid_p (subset))