diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0f074d6..715a4e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-05-25 Jeff Knaggs <jknaggs@redhat.com> + + * config/alpha/alpha.md (movtf_internal): Use reg_overlap_mentioned_p + instead of rtx_equal_p for early clobber test. + 2001-05-26 Mark <mark@codesourcery.com> * builtins.def: Encode additional information, such as names and diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 3460d42..0efba73 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -4673,7 +4673,7 @@ " { alpha_split_tfmode_pair (operands); - if (rtx_equal_p (operands[0], operands[3])) + if (reg_overlap_mentioned_p (operands[0], operands[3])) { rtx tmp; tmp = operands[0], operands[0] = operands[1], operands[1] = tmp; |