PR gas/16026
authorNick Clifton <nickc@redhat.com>
Wed, 9 Oct 2013 15:52:32 +0000 (15:52 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 9 Oct 2013 15:52:32 +0000 (15:52 +0000)
* config/tc-mn10200.c (md_convert_frag): Add missing break
statement.

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

index 58090047cadc9dd8c56b04a3633e6f363c059f41..8a0dec9d3f466c14d7f46ee7fcc696dbc5d86c43 100644 (file)
@@ -1,3 +1,9 @@
+2013-10-09  Nick Clifton  <nickc@redhat.com>
+
+       PR gas/16026
+       * config/tc-mn10200.c (md_convert_frag): Add missing break
+       statement.
+
 2013-10-08  Jan Beulich <jbeulich@suse.com>
 
        * tc-i386.c (check_word_reg): Remove misplaced "else".
index 76280c114b9b49097a5d98348edddd8109050afb..e9c70f225fb1aaf240934c9cdc991ef5f380a32d 100644 (file)
@@ -1,6 +1,5 @@
 /* tc-mn10200.c -- Assembler code for the Matsushita 10200
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006, 2007, 2009  Free Software Foundation, Inc.
+   Copyright 1996-2013 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -562,6 +561,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
          break;
        case 0xff:
          opcode = 0xfe;
+         break;
        case 0xe8:
          opcode = 0xe9;
          break;
This page took 0.027929 seconds and 4 git commands to generate.