Browse Source

PR gas/16026

* config/tc-mn10200.c (md_convert_frag): Add missing break
	statement.
gdb-7.7-branch
Nick Clifton 13 years ago
parent
commit
6085f85378
  1. 6
      gas/ChangeLog
  2. 4
      gas/config/tc-mn10200.c

6
gas/ChangeLog

@ -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> 2013-10-08 Jan Beulich <jbeulich@suse.com>
* tc-i386.c (check_word_reg): Remove misplaced "else". * tc-i386.c (check_word_reg): Remove misplaced "else".

4
gas/config/tc-mn10200.c

@ -1,6 +1,5 @@
/* tc-mn10200.c -- Assembler code for the Matsushita 10200 /* tc-mn10200.c -- Assembler code for the Matsushita 10200
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, Copyright 1996-2013 Free Software Foundation, Inc.
2005, 2006, 2007, 2009 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler. This file is part of GAS, the GNU Assembler.
@ -562,6 +561,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
break; break;
case 0xff: case 0xff:
opcode = 0xfe; opcode = 0xfe;
break;
case 0xe8: case 0xe8:
opcode = 0xe9; opcode = 0xe9;
break; break;

Loading…
Cancel
Save