PR gas/16025
authorNick Clifton <nickc@redhat.com>
Wed, 9 Oct 2013 16:10:11 +0000 (16:10 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 9 Oct 2013 16:10:11 +0000 (16:10 +0000)
* config/tc-epiphany.c (md_convert_frag): Add missing break
statement.

gas/ChangeLog
gas/config/tc-epiphany.c

index 8a0dec9d3f466c14d7f46ee7fcc696dbc5d86c43..91d3b3a104e3e42a6b7f41558f2affcf6eedc789 100644 (file)
@@ -1,5 +1,9 @@
 2013-10-09  Nick Clifton  <nickc@redhat.com>
 
+       PR gas/16025
+       * config/tc-epiphany.c (md_convert_frag): Add missing break
+       statement.
+
        PR gas/16026
        * config/tc-mn10200.c (md_convert_frag): Add missing break
        statement.
index 6cc7d66a07ef44991be2593ca1c5dc3a99bb281d..d47296845a9ce6c54a6f13ffbb0962372b0b35e7 100755 (executable)
@@ -1,5 +1,5 @@
 /* tc-epiphany.c -- Assembler for the Adapteva EPIPHANY
-   Copyright 2009, 2011 Free Software Foundation, Inc.
+   Copyright 2009-2013 Free Software Foundation, Inc.
    Contributed by Embecosm on behalf of Adapteva, Inc.
 
    This file is part of GAS, the GNU Assembler.
@@ -900,6 +900,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
     case EPIPHANY_RELAX_LDST_IMM3:
       addend = ((addend & 7) << 5) | opcode[0];
       opindx = EPIPHANY_OPERAND_DISP3;
+      break;
 
     case EPIPHANY_RELAX_BRANCH_SHORT:
       addend >>= 1;            /* Convert to a word offset.  */
This page took 0.029132 seconds and 4 git commands to generate.