diff options
author | Nick Clifton <nickc@redhat.com> | 2013-10-09 15:52:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-10-09 15:52:32 +0000 |
commit | 6085f8537816a6350a92f7ee4f6a5e8469bdbcc3 (patch) | |
tree | 94f049a0857dabee7baa3dbc4033f647abad7e9c /gas/config | |
parent | 6e114b15ca3feba0ab0c8ca835417f3dafa69470 (diff) | |
download | gdb-6085f8537816a6350a92f7ee4f6a5e8469bdbcc3.zip gdb-6085f8537816a6350a92f7ee4f6a5e8469bdbcc3.tar.gz gdb-6085f8537816a6350a92f7ee4f6a5e8469bdbcc3.tar.bz2 |
PR gas/16026
* config/tc-mn10200.c (md_convert_frag): Add missing break
statement.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mn10200.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mn10200.c b/gas/config/tc-mn10200.c index 76280c1..e9c70f2 100644 --- a/gas/config/tc-mn10200.c +++ b/gas/config/tc-mn10200.c @@ -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; |