diff options
author | John Carr <jfc@mit.edu> | 1998-07-13 16:53:32 +0000 |
---|---|---|
committer | John Carr <jfc@gcc.gnu.org> | 1998-07-13 16:53:32 +0000 |
commit | c6b0465b283d2acba778754d165025fe74410d8e (patch) | |
tree | 42512669ff0ee8332e567f8e852ef50163e5c353 /gcc/print-rtl.c | |
parent | e69fd6e52f9a342c40cc065c93a86b0f292a3005 (diff) | |
download | gcc-c6b0465b283d2acba778754d165025fe74410d8e.zip gcc-c6b0465b283d2acba778754d165025fe74410d8e.tar.gz gcc-c6b0465b283d2acba778754d165025fe74410d8e.tar.bz2 |
sparc.c, [...]: New trampoline code.
Mon Jul 13 16:15:10 1998 John Carr <jfc@mit.edu>
* sparc.c, sparc.h, sparc.md: New trampoline code.
Allow integer operand 1 to V8+ DImode shift instructions.
Fix bugs in V8+ wide multiply patterns.
In 32 bit mode, split DImode register moves and logical instructions.
Write V9 branch prediction flag.
Use V9 conditional move more often for scc.
* print-rtl.c (print_rtx): Use HOST_PTR_PRINTF to print pointer.
From-SVN: r21108
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 2e534ca..947a9b7 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -253,8 +253,7 @@ print_rtx (in_rtx) case 't': putc (' ', outfile); - fprintf (outfile, HOST_WIDE_INT_PRINT_HEX, - (HOST_WIDE_INT) XTREE (in_rtx, i)); + fprintf (outfile, HOST_PTR_PRINTF, (char *) XTREE (in_rtx, i)); break; case '*': |