* cgen-opc.c (cgen_get_insn_value): Add missing `return'.
authorGreg McGary <greg@mcgary.org>
Wed, 21 Feb 2001 21:54:31 +0000 (21:54 +0000)
committerGreg McGary <greg@mcgary.org>
Wed, 21 Feb 2001 21:54:31 +0000 (21:54 +0000)
opcodes/ChangeLog
opcodes/cgen-opc.c

index e09315f7a67517de68a605be53648997d3026cbc..f701d00b5fcdd09010dbd55da5803f8e082cbb29 100644 (file)
@@ -1,3 +1,7 @@
+2001-02-21  Greg McGary  <greg@mcgary.org>
+
+       * cgen-opc.c (cgen_get_insn_value): Add missing `return'.
+
 2001-02-20  H.J. Lu  <hjl@gnu.org>
 
        * Makefile.am (ia64-ic.tbl): Remove the target.
index 1945f9b59164d7e0695652fd2633642f1a05adf0..5e70c8946930d45d25e2a05324f6681a21760a5c 100644 (file)
@@ -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.  */
This page took 0.026718 seconds and 4 git commands to generate.