From d57c66daa6d45c5bf1c54f074c3a2bab774fe6e2 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 7 Jul 1993 15:04:52 -0700 Subject: [PATCH] (convert_to_mode): Move misplaced parentheses. From-SVN: r4878 --- gcc/expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/expr.c b/gcc/expr.c index 4c6e84a6455..965eabc2c76 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1111,8 +1111,8 @@ convert_to_mode (mode, x, unsignedp) && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT && (GET_CODE (x) == CONST_DOUBLE || (GET_MODE_SIZE (mode) <= GET_MODE_SIZE (GET_MODE (x)) - && ((GET_CODE (x) == MEM && ! MEM_VOLATILE_P (x)) - && direct_load[(int) mode] + && ((GET_CODE (x) == MEM && ! MEM_VOLATILE_P (x) + && direct_load[(int) mode]) || GET_CODE (x) == REG))))) return gen_lowpart (mode, x); -- 2.30.2