* Makefile.in ($(DIST_NAME).tar.Z), TODO: Various fixes.
authorPer Bothner <per@bothner.com>
Sun, 3 Nov 1991 22:58:48 +0000 (22:58 +0000)
committerPer Bothner <per@bothner.com>
Sun, 3 Nov 1991 22:58:48 +0000 (22:58 +0000)
* ar.c (get_pos_bfd): Fix to handling of before/after
positioning options.
* bucomm.c (fatal):  MISSING_VFPRINTF is no longer an issue,
since libiberty contains vfprintf etc if otherwise missing.
* m68k-pinsn.c (print_insn_arg):  Support BB/BW/BL
type operands, as used by branch instructions.
* nm.c:  Delegate printing of symbols to BFD,
by using bfd_print_symbol to do the formatting.

binutils/Makefile.in
binutils/TODO
binutils/m68k-pinsn.c

index b28370aa5285a98854cd285b507a5f96169aaac2..1583566770aaafe150817a498940ee71f99e07ac 100644 (file)
@@ -23,7 +23,7 @@ srcdir = .
 destdir = /usr/local
 
 # Distribution version
-VERSION=1.90
+VERSION=1.91
 # Distribution name
 DIST_NAME=binutils-beta-${VERSION}
 
@@ -224,11 +224,11 @@ install: $(PROGS)
 dist: $(DIST_NAME).tar.Z
 
 $(DIST_NAME).tar.Z:
-       cd ../..; rm -f $(DISTNAME); ln -s devo $(DIST_NAME)
-       cd ..; Sanitize test
-       cd binutils; make binutils.mm -f Makefile.in
+       cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
+       make binutils.mm -f Makefile.in
        cd ../ld; make ld.mm -f Makefile.in
        cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
+       rm -rf ../../$(DIST_NAME)
 
 # These get around a bug in Sun Make in SunOS 4.1.1
 alloca.o:alloca.c
index 971b57fda1df6dcd4068fa8e44b39c06984037ed..acd1fe929604edb0bcb73fb6a9df75d7ff63c41e 100644 (file)
@@ -1,5 +1,3 @@
-o 'nm -a' should print stab code names.
-
 OLD:
 
 o - merge:
index 60350d48b89ef29f13ff14a986b64a0a923a7a9e..139a663725466338a51fecd4f28e595c61c06f54 100644 (file)
@@ -20,14 +20,25 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* $Id$
    $Log$
-   Revision 1.4  1991/10/16 18:56:56  bothner
-       * Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
-       i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
-       * strip.c: Add or update Copyright notice.
-       * TODO:  Add note on 'nm -a'.
-       * version.c: Update version number to 1.90.
-       * Makefile.in: Fix making of documentation for dist.
-
+   Revision 1.5  1991/11/03 22:58:44  bothner
+       * Makefile.in ($(DIST_NAME).tar.Z), TODO:  Various fixes.
+       * ar.c (get_pos_bfd): Fix to handling of before/after
+       positioning options.
+       * bucomm.c (fatal):  MISSING_VFPRINTF is no longer an issue,
+       since libiberty contains vfprintf etc if otherwise missing.
+       * m68k-pinsn.c (print_insn_arg):  Support BB/BW/BL
+       type operands, as used by branch instructions.
+       * nm.c:  Delegate printing of symbols to BFD,
+       by using bfd_print_symbol to do the formatting.
+
+ * Revision 1.4  1991/10/16  18:56:56  bothner
+ *     * Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
+ *     i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
+ *     * strip.c: Add or update Copyright notice.
+ *     * TODO:  Add note on 'nm -a'.
+ *     * version.c: Update version number to 1.90.
+ *     * Makefile.in: Fix making of documentation for dist.
+ *
  * Revision 1.3  1991/10/11  11:22:00  gnu
  * Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
  *
@@ -354,9 +365,11 @@ print_insn_arg (d, buffer, p, addr, stream)
     case 'B':
       if (place == 'b')
        val = NEXTBYTE (p);
-      else if (place == 'w')
+      else if (place == 'B')
+       val = buffer[1];
+      else if (place == 'w' || place == 'W')
        val = NEXTWORD (p);
-      else if (place == 'l')
+      else if (place == 'l' || place == 'L')
        val = NEXTLONG (p);
       else if (place == 'g')
        {
This page took 0.026734 seconds and 4 git commands to generate.