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:
David S. Miller 1998-09-03 01:02:22 +00:00 committed by David S. Miller
parent 9335570d9c
commit 222a7e550c
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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);