From d6eabd43eeb3637d28c370f97c9eb02c993c47d4 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 29 Jan 2005 19:14:44 -0800 Subject: [PATCH] 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 --- gcc/ChangeLog | 6 ++++++ gcc/config/i386/i386.md | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c56c728da91..61b0ce26588 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-29 Richard Henderson + + PR target/19690 + * config/i386/i386.md (movdf_nointeger, movdf_integer): Fix ordering + of # and * in constraints. + 2005-01-29 Richard Henderson PR middle-end/19689 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index d09a539ccb0..21134d6838a 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 -- 2.30.2