* config/cr16/cr16.c (cr16_print_operand): Add missing fallthru
comment. Add gcc_unreachable for path that should never happen.
From-SVN: r241584
2016-10-26 Jeff Law <law@redhat.com>
+ * config/cr16/cr16.c (cr16_print_operand): Add missing fallthru
+ comment. Add gcc_unreachable for path that should never happen.
+
* config/epiphany/epiphany.c (epiphany_print_operand): Adjust
fallthru comment.
case 'g':
/* 'g' is used for implicit mem: dereference. */
ptr_dereference = 1;
+ /* FALLTHRU */
case 'f':
case 0:
/* default. */
cr16_print_operand_address (file, VOIDmode, x);
return;
}
+ gcc_unreachable ();
default:
output_operand_lossage ("invalid %%xn code");
}