Handle .gpword and .cpadd only for SVR4_PIC, not != NO_PIC. Still

covered by last ChangeLog entry.
This commit is contained in:
Ian Lance Taylor 1994-03-23 00:43:48 +00:00
parent 51f8393319
commit 7dfa376e9b
1 changed files with 2 additions and 2 deletions

View 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;