diff options
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/i386/i386.md | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8172c6f..ef11439 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-08-21 Jakub Jelinek <jakub@redhat.com> + + * config/i386/i386.md (lea_general_1): Copy insn condition to split + condition. + (lea_general_2, lea_general_3): Likewise. + 2000-08-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * c-decl.c (duplicate_decls, define_label): Restrict -Wtraditional diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 1d771e4..cada4df 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3755,7 +3755,7 @@ && (GET_MODE (operands[0]) == GET_MODE (operands[3]) || GET_MODE (operands[3]) == VOIDmode)" "#" - "reload_completed" + "&& reload_completed" [(const_int 0)] " { @@ -3785,7 +3785,7 @@ && (GET_MODE (operands[0]) == GET_MODE (operands[3]) || GET_MODE (operands[3]) == VOIDmode)" "#" - "reload_completed" + "&& reload_completed" [(const_int 0)] " { @@ -3814,7 +3814,7 @@ && GET_MODE (operands[0]) == GET_MODE (operands[1]) && GET_MODE (operands[0]) == GET_MODE (operands[3])" "#" - "reload_completed" + "&& reload_completed" [(const_int 0)] " { |
