diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-03-10 10:53:17 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-03-10 10:53:17 -0700 |
commit | ea9f550ab543ba6dcc12548bef2e235983bbc370 (patch) | |
tree | d238cd67dff13ae68c34909830c84be1a506128d /gcc | |
parent | 6d22d9a6e039ccec3ab8c42674d93ecb7a24173b (diff) | |
download | gcc-ea9f550ab543ba6dcc12548bef2e235983bbc370.zip gcc-ea9f550ab543ba6dcc12548bef2e235983bbc370.tar.gz gcc-ea9f550ab543ba6dcc12548bef2e235983bbc370.tar.bz2 |
Fix typo in last revision (/2 --> >> 1)
From-SVN: r3698
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index a2b6595..b681c5d 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -1689,7 +1689,7 @@ (match_operand:SI 2 "const_int_operand" ""))) (clobber (match_operand:SI 4 "register_operand" ""))] "! cint_ok_for_move (INTVAL (operands[2])) - && VAL_14_BITS_P (INTVAL (operands[2]) / 2)" + && VAL_14_BITS_P (INTVAL (operands[2]) >> 1)" [(set (match_dup 4) (plus:SI (match_dup 1) (match_dup 2))) (set (match_dup 0) (plus:SI (match_dup 4) (match_dup 3)))] " |