summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>2006-05-24 23:23:10 +0000
committerdanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>2006-05-24 23:23:10 +0000
commit0c7b5a462331d7d19cbfae5646aab38d9567c731 (patch)
treeae429cc8cdc8dfd1434b3a6b4a2d33428f2c6541
parent48cea98908cd660913aee70eb7b1a754c32e6735 (diff)
downloadgcc-0c7b5a462331d7d19cbfae5646aab38d9567c731.tar.gz
PR target/27627
* pa/pa-modes.def: Use mips_single_format, mips_double_format and mips_quad_format formats instead of ieee_single_format, ieee_double_format and ieee_quad_format formats, respectively. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114059 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/pa/pa-modes.def9
2 files changed, 14 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 84396394252..d94f8d6837c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-24 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
+
+ PR target/27627
+ * pa/pa-modes.def: Use mips_single_format, mips_double_format and
+ mips_quad_format formats instead of ieee_single_format,
+ ieee_double_format and ieee_quad_format formats, respectively.
+
2006-05-24 Zdenek Dvorak <dvorakz@suse.cz>
PR tree-optimization/27639
diff --git a/gcc/config/pa/pa-modes.def b/gcc/config/pa/pa-modes.def
index d9602fd1673..b85d3bae543 100644
--- a/gcc/config/pa/pa-modes.def
+++ b/gcc/config/pa/pa-modes.def
@@ -1,5 +1,5 @@
/* Definitions of target machine for GNU compiler, for the HP Spectrum.
- Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com) of Cygnus Support
and Tim Moore (moore@defmacro.cs.utah.edu) of the Center for
Software Science at the University of Utah.
@@ -21,8 +21,13 @@ along with GCC; see the file COPYING. If not, write to
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
+/* PA-RISC has the same reversed quiet bit as MIPS.
+ ??? Why is this called the MIPS format. */
+RESET_FLOAT_FORMAT (SF, mips_single_format);
+RESET_FLOAT_FORMAT (DF, mips_double_format);
+
/* TFmode: IEEE quad floating point (software). */
-FLOAT_MODE (TF, 16, ieee_quad_format);
+FLOAT_MODE (TF, 16, mips_quad_format);
/* HPPA floating comparisons produce distinct condition codes. */
CC_MODE (CCFP);