* config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.
authorGavin Romig-Koch <gavin@redhat.com>
Thu, 24 Dec 1998 00:37:47 +0000 (00:37 +0000)
committerGavin Romig-Koch <gavin@redhat.com>
Thu, 24 Dec 1998 00:37:47 +0000 (00:37 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index 24f851561c12147470829c23e4c2320218d2a959..4dd9d85cecf83ded421d77c2e57db7a72167629d 100644 (file)
@@ -1,3 +1,7 @@
+1998-12-23  Gavin Romig-Koch  <gavin@cygnus.com>
+
+       * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.
+
 1998-12-21  Nick Clifton  <nickc@cygnus.com>
 
        * config/tc-m32r.c (md_assemble): Emit a NOP after a relaxable 16
index 87343bee5a9e0209e4106c5d03e0dce72cacb6a7..797b365330034d4f5d9ffc39b0dc4ab1a29bbab6 100644 (file)
@@ -1110,7 +1110,7 @@ md_begin ()
   /* Set the EABI kind based on the ISA before the user gets
      to change the ISA with directives.  This isn't really
      the best, but then neither is basing the abi on the isa. */     
-  if (mips_opts.isa > 2 && strcmp (mips_abi_string,"eabi"))
+  if (mips_opts.isa > 2 && 0 == strcmp (mips_abi_string,"eabi"))
     mips_eabi64 = 1;
 
   if (mips_cpu != 0 && mips_cpu != -1)
This page took 0.047711 seconds and 4 git commands to generate.