From: John David Anglin Date: Sat, 22 Dec 2007 00:20:26 +0000 (+0000) Subject: pa.c (hppa_legitimize_address): Use INT14_OK_STRICT in mask selection. X-Git-Tag: prereleases/gcc-4.2.3-rc1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55b6530b272b3db1aa06713105fe4afed8503be6;p=thirdparty%2Fgcc.git pa.c (hppa_legitimize_address): Use INT14_OK_STRICT in mask selection. * pa.c (hppa_legitimize_address): Use INT14_OK_STRICT in mask selection. From-SVN: r131132 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35d60e88ae7d..e0d3e2879719 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-12-21 John David Anglin + + * pa.c (hppa_legitimize_address): Use INT14_OK_STRICT in mask selection. + 2007-12-19 Kaz Kylheku PR rtl-optimization/34456 diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 20fde92e24f1..406ed51feacf 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -878,7 +878,7 @@ hppa_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED, int mask; mask = (GET_MODE_CLASS (mode) == MODE_FLOAT - ? (TARGET_PA_20 ? 0x3fff : 0x1f) : 0x3fff); + ? (INT14_OK_STRICT ? 0x3fff : 0x1f) : 0x3fff); /* Choose which way to round the offset. Round up if we are >= halfway to the next boundary. */