From 93de7743bac2adacede483aa17cb1a191e3c9b9a Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Thu, 1 Mar 2007 11:54:52 +0100 Subject: [PATCH] i386.c (ix86_modes_tieable_p): Fix typo, use also size of mode1 to check for tieable modes in MMX case. * config/i386/i386.c (ix86_modes_tieable_p): Fix typo, use also size of mode1 to check for tieable modes in MMX case. From-SVN: r122429 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/i386.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 120d963081d3..1a6be7b37944 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-01 Uros Bizjak + + * config/i386/i386.c (ix86_modes_tieable_p): Fix typo, use also + size of mode1 to check for tieable modes in MMX case. + 2007-03-01 Richard Sandiford * Makefile.in (rtlanal.o): Depend on tree.h. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index c0208301afd4..935f3df7151d 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -18792,7 +18792,7 @@ ix86_modes_tieable_p (enum machine_mode mode1, enum machine_mode mode2) with any other mode acceptable to MMX registers. */ if (GET_MODE_SIZE (mode2) == 8 && ix86_hard_regno_mode_ok (FIRST_MMX_REG, mode2)) - return (GET_MODE_SIZE (mode2) == 8 + return (GET_MODE_SIZE (mode1) == 8 && ix86_hard_regno_mode_ok (FIRST_MMX_REG, mode1)); return false; -- 2.47.2