* config/tc-m88k.c (m88k_do_align): Correct check for whether fill
authorIan Lance Taylor <ian@airs.com>
Fri, 1 Dec 1995 15:56:25 +0000 (15:56 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 1 Dec 1995 15:56:25 +0000 (15:56 +0000)
pattern is zero.  From Manfred Hollstein.

gas/ChangeLog
gas/config/tc-m88k.c

index b925148153b063c3a1595ec448328ab9f1e92d90..c5416749ff5175ae441355cd2fb8a044d23b15b3 100644 (file)
@@ -1,3 +1,8 @@
+Fri Dec  1 10:59:25 1995  Ian Lance Taylor  <ian@cygnus.com>
+
+       * config/tc-m88k.c (m88k_do_align): Correct check for whether fill
+       pattern is zero.  From Manfred Hollstein.
+
 Thu Nov 30 13:25:49 1995  Kim Knuttila  <krk@cygnus.com>
 
        * config/tc-ppc.c (ppc_pe_section): To get the alignment right for
index e9b22738e728a588be1ce586560ede77f9681009..10c26e68d69433af9554500ffb2bc5ef2a898b86 100644 (file)
@@ -1436,7 +1436,7 @@ m88k_do_align (n, fill)
      int n;
      const char *fill;
 {
-  if (!fill
+  if ((fill == NULL || *fill == 0)
       && strcmp (obj_segment_name (now_seg), ".init") == 0)
     {
       static const unsigned char nop_pattern[] = { 0xf4, 0x00, 0x58, 0x00 };