*** empty log message ***

From-SVN: r454
This commit is contained in:
Richard Stallman 1992-03-12 07:10:18 +00:00
parent 0b43fd9a14
commit 6a8c88c8a4
1 changed files with 6 additions and 7 deletions

View File

@ -499,18 +499,15 @@ print_operand_address (file, addr)
offset = const0_rtx;
/* now, offset, base and indexexp are set */
if (! base)
#ifdef PC_RELATIVE
{
if (GET_CODE (offset) == LABEL_REF || GET_CODE (offset) == SYMBOL_REF)
;
else
#if defined (PC_RELATIVE) || defined (NO_ABSOLUTE_PREFIX_IF_SYMBOLIC)
if (! (GET_CODE (offset) == LABEL_REF
|| GET_CODE (offset) == SYMBOL_REF))
#endif
PUT_ABSOLUTE_PREFIX (file);
#ifdef PC_RELATIVE
}
#endif
output_addr_const (file,offset);
output_addr_const (file, offset);
if (base) /* base can be (REG ...) or (MEM ...) */
switch (GET_CODE (base))
{
@ -574,10 +571,12 @@ print_operand_address (file, addr)
output_addr_const (file, offset);
if (base)
fprintf (file, "(%s)", reg_names[REGNO (base)]);
#ifdef BASE_REG_NEEDED
else if (TARGET_SB)
fprintf (file, "(sb)");
else
abort ();
#endif
fprintf (file, ")");
break;