diff options
author | Graham Stott <graham.stott@btinternet.com> | 2004-11-01 00:59:33 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2004-11-01 00:59:33 +0000 |
commit | 35936b935916ac97171ad2f05edb39aa2c728bda (patch) | |
tree | 21ec3bd5f856f154bbb26fece6380c98c2ab1dc4 /gcc/config/pa | |
parent | f388b490a879427a6dd6450fad60c2cf51efe23e (diff) | |
download | gcc-35936b935916ac97171ad2f05edb39aa2c728bda.zip gcc-35936b935916ac97171ad2f05edb39aa2c728bda.tar.gz gcc-35936b935916ac97171ad2f05edb39aa2c728bda.tar.bz2 |
pa.md: (prefetch_64, prefetch_32): Fix typo.
* config/pa/pa.md: (prefetch_64, prefetch_32): Fix typo. Use
INT_5_BITS instead of VAL_5_BITS_P.
From-SVN: r89929
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 074b22c..aa6d1ac 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -9319,7 +9319,7 @@ add,l %2,%3,%3\;bv,n %%r0(%3)" && (operands[2] != const0_rtx || GET_CODE (XEXP (operands[0], 0)) != PLUS || GET_CODE (XEXP (XEXP (operands[0], 0), 1)) != CONST_INT - || VAL_5_BITS_P (XEXP (XEXP (operands[0], 0), 1)))" + || INT_5_BITS (XEXP (XEXP (operands[0], 0), 1)))" { /* The SL completor indicates good spatial locality but poor temporal locality. The ldw instruction with a target of general register 0 @@ -9371,7 +9371,7 @@ add,l %2,%3,%3\;bv,n %%r0(%3)" && (operands[2] != const0_rtx || GET_CODE (XEXP (operands[0], 0)) != PLUS || GET_CODE (XEXP (XEXP (operands[0], 0), 1)) != CONST_INT - || VAL_5_BITS_P (XEXP (XEXP (operands[0], 0), 1)))" + || INT_5_BITS (XEXP (XEXP (operands[0], 0), 1)))" { /* The SL completor indicates good spatial locality but poor temporal locality. The ldw instruction with a target of general register 0 |