Fix typo
authorNick Clifton <nickc@redhat.com>
Fri, 4 Aug 2000 22:23:32 +0000 (22:23 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 4 Aug 2000 22:23:32 +0000 (22:23 +0000)
gas/ChangeLog
gas/config/tc-sparc.c

index 17efdce3611a2e3d1b5f919c10d5620e1ed73332..63c64f010309937ac1be034a33e172c6f8f207b2 100644 (file)
@@ -1,5 +1,8 @@
 2000-08-04  Nick Clifton  <nickc@cygnus.com>
 
+       * config/tc-sparc.c (md_begin): Fix typo in recent formatting
+       work.
+
        * doc/as.texinfo (Pseudo Ops): Update to include descriptions
        of .popsection, .previous, .pushsection, .subsection,
        .version, .vtable_entry, .vtable_inherit and .weak.
index 1984f5447552eb0f35e9fa0519bf3b22309a0839..a2fe524cfc055b3480d2240678fd7743662ee6d7 100644 (file)
@@ -786,9 +786,9 @@ md_begin ()
   for (i = 0; native_op_table[i].name; i++)
     {
       const struct sparc_opcode *insn;
-      char *name = sparc_arch_size == (32
-                                      ? native_op_table[i].name32
-                                      : native_op_table[i].name64);
+      char *name = ((sparc_arch_size == 32)
+                   ? native_op_table[i].name32
+                   : native_op_table[i].name64);
       insn = (struct sparc_opcode *) hash_find (op_hash, name);
       if (insn == NULL)
        {