diff options
author | Graham Stott <grahams@btinternet.com> | 2003-09-21 15:27:00 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2003-09-21 15:27:00 +0000 |
commit | fa543fdda1fb1769de6c5101ce8f6722501be71f (patch) | |
tree | 891ac051bbc82ebdc51149d879b2a341fd7e1f50 /gcc | |
parent | b3e3732ce16b9c87e89774592c29e81ed13db236 (diff) | |
download | gcc-fa543fdda1fb1769de6c5101ce8f6722501be71f.zip gcc-fa543fdda1fb1769de6c5101ce8f6722501be71f.tar.gz gcc-fa543fdda1fb1769de6c5101ce8f6722501be71f.tar.bz2 |
re PR target/12353 (ICE in copyprop_hardreg_forward_1)
PR target/12353
* config/i386/i386.md(ffs_no_cmove): Fix operand 2 constraint.
From-SVN: r71627
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca9c540..80432f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-21 Graham Stott <grahams@btinternet.com> + + PR target/12353 + * config/i386/i386.md(ffs_no_cmove): Fix operand 2 constraint. + 2003-09-21 Eric Botcazou <ebotcazou@libertysurf.fr> PR target/12301 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 6fa1650..9ee1d7d 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -14450,7 +14450,7 @@ (define_insn_and_split "*ffs_no_cmove" [(set (match_operand:SI 0 "nonimmediate_operand" "=r") (ffs:SI (match_operand:SI 1 "nonimmediate_operand" "rm"))) - (clobber (match_scratch:SI 2 "=&r")) + (clobber (match_scratch:SI 2 "=&q")) (clobber (reg:CC 17))] "" "#" |