From b73c3f2af523a58fa18c34ba1175b196c5af1194 Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Wed, 20 Mar 1996 21:19:14 +0000 Subject: [PATCH] (HARD_REGNO_MODE_OK): Relax QImode constraint to avoid a reload problem. From-SVN: r11580 --- gcc/config/i386/i386.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index e05882ffcc72..507671a86bd9 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -502,7 +502,8 @@ extern enum processor_type ix86_cpu; ? (((int) GET_MODE_CLASS (MODE) == (int) MODE_FLOAT \ || (int) GET_MODE_CLASS (MODE) == (int) MODE_COMPLEX_FLOAT) \ && GET_MODE_UNIT_SIZE (MODE) <= 12) \ - : (int) (MODE) != (int) QImode) + : (int) (MODE) != (int) QImode ? 1 \ + : (reload_in_progress | reload_completed) == 1) /* Value is 1 if it is a good idea to tie two pseudo registers when one has mode MODE1 and one has mode MODE2. -- 2.43.5