diff options
author | Nick Clifton <nickc@redhat.com> | 2013-10-09 16:10:11 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-10-09 16:10:11 +0000 |
commit | b7b2bb1d1c9050de79b1747e91c410bc69333e4f (patch) | |
tree | 1f9cd784878a76d32b52f92871fec73d19d01830 /gas | |
parent | c74e1ccf71458d5e1ab1c5a877a6c27d62597250 (diff) | |
download | gdb-b7b2bb1d1c9050de79b1747e91c410bc69333e4f.zip gdb-b7b2bb1d1c9050de79b1747e91c410bc69333e4f.tar.gz gdb-b7b2bb1d1c9050de79b1747e91c410bc69333e4f.tar.bz2 |
PR gas/16025
* config/tc-epiphany.c (md_convert_frag): Add missing break
statement.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rwxr-xr-x | gas/config/tc-epiphany.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8a0dec9..91d3b3a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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. diff --git a/gas/config/tc-epiphany.c b/gas/config/tc-epiphany.c index 6cc7d66..d472968 100755 --- a/gas/config/tc-epiphany.c +++ b/gas/config/tc-epiphany.c @@ -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. */ |