Handle .gpword and .cpadd only for SVR4_PIC, not != NO_PIC. Still
authorIan Lance Taylor <ian@airs.com>
Wed, 23 Mar 1994 00:43:48 +0000 (00:43 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 23 Mar 1994 00:43:48 +0000 (00:43 +0000)
covered by last ChangeLog entry.

gas/config/tc-mips.c

index 275c7e03822757ebfdfb243676aef6618a06462d..ffc034ee44145bfac7c32d6abe426cc7a34caf50 100644 (file)
@@ -5641,7 +5641,7 @@ s_gpword (ignore)
   char *p;
 
   /* When not generating PIC code, this is treated as .word.  */
-  if (mips_pic == NO_PIC)
+  if (mips_pic != SVR4_PIC)
     {
       s_cons (2);
       return;
@@ -5680,7 +5680,7 @@ s_cpadd (ignore)
   int reg;
 
   /* This is ignored when not generating SVR4 PIC code.  */
-  if (mips_pic == NO_PIC)
+  if (mips_pic != SVR4_PIC)
     {
       s_ignore (0);
       return;