diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-10-21 13:14:26 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-10-21 13:14:26 +0000 |
commit | 2918c993e61b13aec77cdacfb82c411bc7ea697a (patch) | |
tree | ce5d7107b86bbaca2f788af25ac905f83634eb6a | |
parent | 0ac1a3d36fda90fab49eac0450747ce90c5315fa (diff) | |
download | gcc-2918c993e61b13aec77cdacfb82c411bc7ea697a.zip gcc-2918c993e61b13aec77cdacfb82c411bc7ea697a.tar.gz gcc-2918c993e61b13aec77cdacfb82c411bc7ea697a.tar.bz2 |
* config/h8300/h8300.h (N_REG_CLASSES): Parenthesize.
From-SVN: r58359
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 33e88b9..beae4af 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-21 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.h (N_REG_CLASSES): Parenthesize. + 2002-10-20 Richard Henderson <rth@redhat.com> * target.h (struct gcc_target): Line wrap. diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 2c41f42..ba02d40 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -379,7 +379,7 @@ enum reg_class { NO_REGS, GENERAL_REGS, MAC_REGS, ALL_REGS, LIM_REG_CLASSES }; -#define N_REG_CLASSES (int) LIM_REG_CLASSES +#define N_REG_CLASSES ((int) LIM_REG_CLASSES) /* Give names of register classes as strings for dump file. */ |