rs6000.c (print_operand, case 'v'): Use HOST_WIDE_INT_PRINT_HEX format.

* rs6000.c (print_operand, case 'v'): Use HOST_WIDE_INT_PRINT_HEX
        format.
        * rs6000.md (cmptf): Fix typo.

From-SVN: r47298
This commit is contained in:
David Edelsohn 2001-11-24 06:44:11 +00:00 committed by David Edelsohn
parent e7a4130eeb
commit 134c32f6de
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2001-11-23 David Edelsohn <edelsohn@gnu.org>
* rs6000.c (print_operand, case 'v'): Use HOST_WIDE_INT_PRINT_HEX
format.
* rs6000.md (cmptf): Fix typo.
2001-11-23 Richard Sandiford <rsandifo@redhat.com>
* final.c (output_addr_const): Output PC as '.' even if !flag_pic.

View File

@ -5161,10 +5161,9 @@ print_operand (file, x, code)
if (! INT_P (x))
output_operand_lossage ("invalid %%v value");
else
{
fprintf (file, "0x%x", (INT_LOWPART (x) >> 16) & 0xffff);
return;
}
fprintf (file, HOST_WIDE_INT_PRINT_HEX,
(INT_LOWPART (x) >> 16) & 0xffff);
return;
case 'U':
/* Print `u' if this has an auto-increment or auto-decrement. */

View File

@ -9915,7 +9915,6 @@
(define_expand "cmptf"
[(set (cc0) (compare (match_operand:TF 0 "gpc_reg_operand" "")
(match_operand:TF 1 "gpc_reg_operand" "")))]
"DEFAULT_ABI == ABI_AIX && TARGET_HARD_FLOAT && TARGET_LONG_DOUBLE_128"
"
{