diff options
author | Jan Hubicka <jh@suse.cz> | 2001-02-14 11:52:33 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-02-14 10:52:33 +0000 |
commit | c6e95f348808ad52294940b77ec4e747efde49b2 (patch) | |
tree | 81a2be362a8bebf62f176b5b4a95f43effe71333 | |
parent | 394fd77650dde63ff946c46b7918839b9ff93d5a (diff) | |
download | gcc-c6e95f348808ad52294940b77ec4e747efde49b2.zip gcc-c6e95f348808ad52294940b77ec4e747efde49b2.tar.gz gcc-c6e95f348808ad52294940b77ec4e747efde49b2.tar.bz2 |
* i386.md (pushsf, pushdf_nointeger): Fix constraint.
From-SVN: r39678
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 09c8a73..e77d4d8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 14 11:13:45 CET 2001 Jan Hubicka <jh@suse.cz> + + * i386.md (pushsf, pushdf_nointeger): Fix constraint. + 2001-02-14 Richard Henderson <rth@redhat.com> * regclass.c (init_reg_sets_1): Revert last two changes. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index acd709c..200fbb9 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2149,7 +2149,7 @@ (define_insn "*pushsf" [(set (match_operand:SF 0 "push_operand" "=<,<,<") - (match_operand:SF 1 "general_no_elim_operand" "f#rx,rFm#fx,x"))] + (match_operand:SF 1 "general_no_elim_operand" "f#rx,rFm#fx,x#rf"))] "" "* { @@ -2293,7 +2293,7 @@ (define_insn "*pushdf_nointeger" [(set (match_operand:DF 0 "push_operand" "=<,<,<,<") - (match_operand:DF 1 "general_no_elim_operand" "f#Y,Fo#fY,*r#fY,Y"))] + (match_operand:DF 1 "general_no_elim_operand" "f#Y,Fo#fY,*r#fY,Y#f"))] "!TARGET_INTEGER_DFMODE_MOVES" "* { |