projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51f8393
)
Handle .gpword and .cpadd only for SVR4_PIC, not != NO_PIC. Still
author
Ian Lance Taylor
<ian@airs.com>
Wed, 23 Mar 1994 00:43:48 +0000
(
00:43
+0000)
committer
Ian 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
patch
|
blob
|
history
diff --git
a/gas/config/tc-mips.c
b/gas/config/tc-mips.c
index 275c7e03822757ebfdfb243676aef6618a06462d..ffc034ee44145bfac7c32d6abe426cc7a34caf50 100644
(file)
--- a/
gas/config/tc-mips.c
+++ b/
gas/config/tc-mips.c
@@
-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;