From: Greg McGary Date: Wed, 21 Feb 2001 21:54:31 +0000 (+0000) Subject: * cgen-opc.c (cgen_get_insn_value): Add missing `return'. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=dd425adaa8da7d06250ea4303bd0275e790adeba;p=deliverable%2Fbinutils-gdb.git * cgen-opc.c (cgen_get_insn_value): Add missing `return'. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e09315f7a6..f701d00b5f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2001-02-21 Greg McGary + + * cgen-opc.c (cgen_get_insn_value): Add missing `return'. + 2001-02-20 H.J. Lu * Makefile.am (ia64-ic.tbl): Remove the target. diff --git a/opcodes/cgen-opc.c b/opcodes/cgen-opc.c index 1945f9b591..5e70c89469 100644 --- a/opcodes/cgen-opc.c +++ b/opcodes/cgen-opc.c @@ -1,6 +1,6 @@ /* CGEN generic opcode support. - Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU Binutils and GDB, the GNU debugger. @@ -374,7 +374,7 @@ cgen_get_insn_value (cd, buf, length) unsigned char *buf; int length; { - bfd_get_bits (buf, length, cd->insn_endian == CGEN_ENDIAN_BIG); + return bfd_get_bits (buf, length, cd->insn_endian == CGEN_ENDIAN_BIG); } /* Cover function to store an insn value properly byteswapped. */