* config/tc-s390.c (s390_elf_cons): Correct fixups for PLT
[deliverable/binutils-gdb.git] / gas / config / tc-sparc.c
index 558dc893f006be4c1e8fcdbf7ad483b0ae18c13d..a0a1d31b4e1175e60865107f37ee7c91d9874f52 100644 (file)
@@ -632,12 +632,12 @@ md_show_usage (stream)
        continue;
       if (arch != &sparc_arch_table[0])
        fprintf (stream, " | ");
-      if (column + strlen(arch->name) > 70)
+      if (column + strlen (arch->name) > 70)
        {
          column = 0;
          fputc ('\n', stream);
        }
-      column += 5 + 2 + strlen(arch->name);
+      column += 5 + 2 + strlen (arch->name);
       fprintf (stream, "-A%s", arch->name);
     }
   for (arch = &sparc_arch_table[0]; arch->name; arch++)
@@ -645,12 +645,12 @@ md_show_usage (stream)
       if (!arch->user_option_p)
        continue;
       fprintf (stream, " | ");
-      if (column + strlen(arch->name) > 65)
+      if (column + strlen (arch->name) > 65)
        {
          column = 0;
          fputc ('\n', stream);
        }
-      column += 5 + 7 + strlen(arch->name);
+      column += 5 + 7 + strlen (arch->name);
       fprintf (stream, "-xarch=%s", arch->name);
     }
   fprintf (stream, _("\n\
@@ -3920,6 +3920,7 @@ s_uacons (bytes)
   /* Tell sparc_cons_align not to align this value.  */
   sparc_no_align_cons = 1;
   cons (bytes);
+  sparc_no_align_cons = 0;
 }
 
 /* This handles the native word allocation pseudo-op .nword.
@@ -4213,8 +4214,7 @@ cons_fix_new_sparc (frag, where, nbytes, exp)
        case 8: r = BFD_RELOC_SPARC_UA64; break;
        default: abort ();
        }
-      sparc_no_align_cons = 0;
-    }
+   }
 
   fix_new_exp (frag, where, (int) nbytes, exp, 0, r);
 }
This page took 0.0248 seconds and 4 git commands to generate.