From c0d127129367344cefe9efcd3f0f232ce1df3447 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sun, 27 Feb 2005 16:32:12 +0000 Subject: [PATCH] re PR rtl-optimization/17728 (ICE in extract_insn, at recog.c:2083, unrecognizable insn) PR rtl-optimization/17728 * pa.md (mulsi3, divsi3, udivsi3, modsi3): Change predicate for operand 0 from general_operand to move_dest_operand. From-SVN: r95616 --- gcc/ChangeLog | 6 ++++++ gcc/config/pa/pa.md | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4552e188b9a..5730b9441c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-02-27 John David Anglin + + 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 * 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 9a434a6095f..6f8f42dd3e7 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))] "" " { -- 2.30.2