From 1fe668e5e3f0cf10d260dfc5ea401ed7e378b3c7 Mon Sep 17 00:00:00 2001 From: Glen Nakamura Date: Sat, 15 Mar 2003 14:06:01 +0100 Subject: reload1.c (choose_reload_regs): Use && instead of || with REG_CANNOT_CHANGE_MODE_P condition. 2003-03-15 Glen Nakamura * reload1.c (choose_reload_regs): Use && instead of || with REG_CANNOT_CHANGE_MODE_P condition. From-SVN: r64399 --- gcc/reload1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/reload1.c') diff --git a/gcc/reload1.c b/gcc/reload1.c index e454947..de995a0 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5503,7 +5503,7 @@ choose_reload_regs (chain) #ifdef CANNOT_CHANGE_MODE_CLASS (!REG_CANNOT_CHANGE_MODE_P (i, GET_MODE (last_reg), need_mode) - || + && #endif (GET_MODE_SIZE (GET_MODE (last_reg)) >= GET_MODE_SIZE (need_mode)) -- cgit v1.1