diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/pa/pa.md | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4552e18..5730b94 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-02-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR rtl-optimization/17728 + * pa.md (mulsi3, divsi3, udivsi3, modsi3): Change predicate for + operand 0 from general_operand to move_dest_operand. + 2005-02-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * pa/elf.h, pa/som.h (ASM_OUTPUT_EXTERNAL): Use assemble_name_raw diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 9a434a6..6f8f42d 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -5101,7 +5101,7 @@ (clobber (reg:SI 26)) (clobber (reg:SI 25)) (clobber (match_dup 4))]) - (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))] + (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))] "" " { @@ -5227,7 +5227,7 @@ (clobber (reg:SI 26)) (clobber (reg:SI 25)) (clobber (match_dup 5))]) - (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))] + (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))] "" " { @@ -5283,7 +5283,7 @@ (clobber (reg:SI 26)) (clobber (reg:SI 25)) (clobber (match_dup 5))]) - (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))] + (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))] "" " { @@ -5340,7 +5340,7 @@ (clobber (reg:SI 26)) (clobber (reg:SI 25)) (clobber (match_dup 5))]) - (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))] + (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))] "" " { @@ -5392,7 +5392,7 @@ (clobber (reg:SI 26)) (clobber (reg:SI 25)) (clobber (match_dup 5))]) - (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))] + (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))] "" " { |