diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-12-22 22:06:35 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-12-22 22:06:35 +0000 |
commit | 938802033e97eb1c384ddabf8f9f2065632d02a4 (patch) | |
tree | d3c41d1fad0a4d7bc84d1e78f14516a820e2e648 /gcc/tree.h | |
parent | 5e001b48afe2374f1f63b01e01fb6e308f0365ed (diff) | |
download | gcc-938802033e97eb1c384ddabf8f9f2065632d02a4.tar.gz |
system.h (IN_RANGE): Restore HOST_WIDE_INT cast.
* system.h (IN_RANGE): Restore HOST_WIDE_INT cast.
* tree.h (IS_EXPR_CODE_CLASS): Do not use IN_RANGE.
From-SVN: r92511
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 76424a5c6b9..7a78bbf6190 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -147,7 +147,7 @@ extern const enum tree_code_class tree_code_type[]; expression. */ #define IS_EXPR_CODE_CLASS(CLASS)\ - (IN_RANGE (CLASS, tcc_reference, tcc_expression)) + (((CLASS) - tcc_reference) <= (tcc_expression - tcc_reference)) /* Returns nonzero iff NODE is an expression of some kind. */ |