From ec253d27e0aea21a8f7f5e557e7b5f944cfa57fe Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Thu, 1 Apr 1993 01:07:04 +0000 Subject: [PATCH] Fix wrong sign From-SVN: r3983 --- gcc/config/mips/mips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 9101fc3a7dd..a888803f772 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -1455,7 +1455,7 @@ extern enum reg_class mips_char_to_class[]; needed to represent mode MODE in a register of class CLASS. */ #define CLASS_UNITS(mode, num) \ - ((GET_MODE_SIZE (mode) + ((num) * UNITS_PER_WORD) + 1) / ((num) * UNITS_PER_WORD)) + ((GET_MODE_SIZE (mode) + ((num) * UNITS_PER_WORD) - 1) / ((num) * UNITS_PER_WORD)) #define CLASS_MAX_NREGS(CLASS, MODE) \ (((CLASS) == FP_REGS && TARGET_FLOAT64) \ -- 2.30.2