sparc.c (output_double_int): If V9 and MEDLOW...
* config/sparc/sparc.c (output_double_int): If V9 and MEDLOW, do not assume top 32-bits of symbolic addresses are zero if flag_pic. From-SVN: r22202
This commit is contained in:
parent
9335570d9c
commit
222a7e550c
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Sep 2 23:56:29 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
|
||||
|
||||
* config/sparc/sparc.c (output_double_int): If V9 and MEDLOW, do
|
||||
not assume top 32-bits of symbolic addresses are zero if
|
||||
flag_pic.
|
||||
|
||||
Thu Sep 3 00:23:21 1998 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* ginclude/va-alpha.h: Protect entire second portion of the
|
||||
|
|
|
@ -5219,7 +5219,9 @@ output_double_int (file, value)
|
|||
|| GET_CODE (value) == CODE_LABEL
|
||||
|| GET_CODE (value) == MINUS)))
|
||||
{
|
||||
if (!TARGET_V9 || TARGET_CM_MEDLOW)
|
||||
if (! TARGET_V9
|
||||
|| (TARGET_CM_MEDLOW
|
||||
&& ! flag_pic))
|
||||
{
|
||||
ASM_OUTPUT_INT (file, const0_rtx);
|
||||
ASM_OUTPUT_INT (file, value);
|
||||
|
|
Loading…
Add table
Reference in a new issue