diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2007-12-22 00:17:43 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2007-12-22 00:17:43 +0000 |
commit | 94919bd2bcacb6091c27c14cb0228f22bb9579f1 (patch) | |
tree | 865b7047dbd4f8ea169adc9021f0b91f991b451a /gcc/config/pa | |
parent | a9ac35c8e8f2929aafff1ecfea33ae0edc0954fe (diff) | |
download | gcc-94919bd2bcacb6091c27c14cb0228f22bb9579f1.zip gcc-94919bd2bcacb6091c27c14cb0228f22bb9579f1.tar.gz gcc-94919bd2bcacb6091c27c14cb0228f22bb9579f1.tar.bz2 |
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: r131130
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index fce53fe..c571a75 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -948,7 +948,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. */ |