Commit 134c32f6 by David Edelsohn Committed by David Edelsohn

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
parent e7a4130e
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> 2001-11-23 Richard Sandiford <rsandifo@redhat.com>
* final.c (output_addr_const): Output PC as '.' even if !flag_pic. * final.c (output_addr_const): Output PC as '.' even if !flag_pic.
......
...@@ -5161,10 +5161,9 @@ print_operand (file, x, code) ...@@ -5161,10 +5161,9 @@ print_operand (file, x, code)
if (! INT_P (x)) if (! INT_P (x))
output_operand_lossage ("invalid %%v value"); output_operand_lossage ("invalid %%v value");
else else
{ fprintf (file, HOST_WIDE_INT_PRINT_HEX,
fprintf (file, "0x%x", (INT_LOWPART (x) >> 16) & 0xffff); (INT_LOWPART (x) >> 16) & 0xffff);
return; return;
}
case 'U': case 'U':
/* Print `u' if this has an auto-increment or auto-decrement. */ /* Print `u' if this has an auto-increment or auto-decrement. */
......
...@@ -9915,7 +9915,6 @@ ...@@ -9915,7 +9915,6 @@
(define_expand "cmptf" (define_expand "cmptf"
[(set (cc0) (compare (match_operand:TF 0 "gpc_reg_operand" "") [(set (cc0) (compare (match_operand:TF 0 "gpc_reg_operand" "")
(match_operand:TF 1 "gpc_reg_operand" "")))] (match_operand:TF 1 "gpc_reg_operand" "")))]
"DEFAULT_ABI == ABI_AIX && TARGET_HARD_FLOAT && TARGET_LONG_DOUBLE_128" "DEFAULT_ABI == ABI_AIX && TARGET_HARD_FLOAT && TARGET_LONG_DOUBLE_128"
" "
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment