2017-05-15 Jeff Law <law@redhat.com>

* readelf.c (display_arc_attribute): Avoid implicit fallthru.
This commit is contained in:
Jeff Law 2017-05-15 10:48:41 -06:00
parent 52a86f843b
commit d8cbc93b65
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2017-05-15 Jeff Law <law@redhat.com>
* readelf.c (display_arc_attribute): Avoid implicit fallthru.
2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
* testsuite/binutils-all/mips/mips16-undecoded.d: Add `-mips3'

View File

@ -13586,10 +13586,11 @@ display_arc_attribute (unsigned char * p,
{
default:
if (val > 0 && val < 16)
{
printf ("Core%d\n", val);
break;
}
else
printf ("Unknown\n");
break;
case 0:
printf (_("Absent\n"));
break;