diff options
author | Richard Henderson <rth@redhat.com> | 2005-01-29 19:14:44 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2005-01-29 19:14:44 -0800 |
commit | d6eabd43eeb3637d28c370f97c9eb02c993c47d4 (patch) | |
tree | ab915b3c6db486a6a6517ce2f9556f9a697417f9 | |
parent | 8d74033081ff4815c2ff92dd8371c650d7bd1b7c (diff) | |
download | gcc-d6eabd43eeb3637d28c370f97c9eb02c993c47d4.zip gcc-d6eabd43eeb3637d28c370f97c9eb02c993c47d4.tar.gz gcc-d6eabd43eeb3637d28c370f97c9eb02c993c47d4.tar.bz2 |
re PR target/19690 (ICE with -O3 -march=athlon-xp -mfpmath=sse -mno-80387)
PR target/19690
* config/i386/i386.md (movdf_nointeger, movdf_integer): Fix ordering
of # and * in constraints.
From-SVN: r94433
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c56c728..61b0ce2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2005-01-29 Richard Henderson <rth@redhat.com> + PR target/19690 + * config/i386/i386.md (movdf_nointeger, movdf_integer): Fix ordering + of # and * in constraints. + +2005-01-29 Richard Henderson <rth@redhat.com> + PR middle-end/19689 * expr.c (store_field): Don't strip sub-mode cast when the input data is even smaller. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index d09a539..21134d6 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2420,9 +2420,9 @@ (define_insn "*movdf_nointeger" [(set (match_operand:DF 0 "nonimmediate_operand" - "=f#Y,m ,f#Y,*r ,o ,Y#f*x,Y#f*x,Y#f*x ,m ") + "=f#Y,m ,f#Y,*r ,o ,Y*x#f,Y*x#f,Y*x#f ,m ") (match_operand:DF 1 "general_operand" - "fm#Y,f#Y,G ,*roF,F*r,C ,Y#f*x,HmY#f*x,Y#f*x"))] + "fm#Y,f#Y,G ,*roF,F*r,C ,Y*x#f,HmY*x#f,Y*x#f"))] "(GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM) && ((optimize_size || !TARGET_INTEGER_DFMODE_MOVES) && !TARGET_64BIT) && (reload_in_progress || reload_completed @@ -2540,9 +2540,9 @@ (define_insn "*movdf_integer" [(set (match_operand:DF 0 "nonimmediate_operand" - "=f#Yr,m ,f#Yr,r#Yf ,o ,Y#rf*x,Y#rf*x,Y#rf*x,m") + "=f#Yr,m ,f#Yr,r#Yf ,o ,Y*x#rf,Y*x#rf,Y*x#rf,m") (match_operand:DF 1 "general_operand" - "fm#Yr,f#Yr,G ,roF#Yf,Fr#Yf,C ,Y#rf*x,m ,Y#rf*x"))] + "fm#Yr,f#Yr,G ,roF#Yf,Fr#Yf,C ,Y*x#rf,m ,Y*x#rf"))] "(GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM) && ((!optimize_size && TARGET_INTEGER_DFMODE_MOVES) || TARGET_64BIT) && (reload_in_progress || reload_completed |