]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
Remove unnecessary ternary operator in m32c-tdep.c
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 21 Aug 2018 14:47:47 +0000 (10:47 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 21 Aug 2018 14:47:47 +0000 (10:47 -0400)
commita4497d2f8486502ab5140ec5168d5f13ec375155
tree392e73ab89566e9874d6f7ecd3d2bf216e8552c9
parent06d743b72334ad4f9297c206290a47c261aa8e5f
Remove unnecessary ternary operator in m32c-tdep.c

Bug 17816 pointed out a useless use of the ternary operator:

  case 0x0: sd.reg = (size == 1 ? &st->r0 : &st->r0); break;

I believe that this is right.  If size is 1, the instruction refers to
part of r0, while if size is 2, the instruction refers to the whole of
r0.

gdb/ChangeLog:

PR gdb/17816
* m32c-tdep.c (m32c_decode_srcdest4): Remove unnecessary ternary
operator.
gdb/ChangeLog
gdb/m32c-tdep.c