diff options
author | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-08-05 09:03:42 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-08-05 09:03:42 +0000 |
commit | ca7a3bd7d5c371af20775d28ec20bf57115b20e5 (patch) | |
tree | 267e3abff19f5eff30100b2ff7fa407469a91070 /gcc/java/lex.h | |
parent | d36837f4cac8268ddb67fcf4f8ecfe323d79d92b (diff) | |
download | gcc-ca7a3bd7d5c371af20775d28ec20bf57115b20e5.zip gcc-ca7a3bd7d5c371af20775d28ec20bf57115b20e5.tar.gz gcc-ca7a3bd7d5c371af20775d28ec20bf57115b20e5.tar.bz2 |
tree.h (force_fit_type): Return a tree, take three flags.
* tree.h (force_fit_type): Return a tree, take three flags.
* fold-const.c (force_fit_type): Set TREE_OVERFLOW and
TREE_CONSTANT_OVERFLOW here.
(int_const_binop, const_binop): Adjust.
(size_int_type): Do sign extension here.
(fold_convert_const, optimize_bit_field_compare,
decode_field_reference, all_ones_mask_p, fold_div_compare, fold,
fold_negate_const, fold_abs_const, fold_not_const): Adjust.
* tree.c (size_in_bytes, int_fits_type_p): Adjust.
* cp/cvt.c (cp_convert_to_pointer): Adjust force_fit_type call.
* java/jcf-parse.c (get_constant): Adjust force_fit_type call.
* java/lex.h (SET_LVAL_NODE_TYPE): Remove.
* java/lex.c (java_perform_atof): Use SET_LVAL_NODE directly.
(do_java_lex): Likewise. Adjust force_fit_type call.
From-SVN: r85599
Diffstat (limited to 'gcc/java/lex.h')
-rw-r--r-- | gcc/java/lex.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/java/lex.h b/gcc/java/lex.h index 9a7cad1..bae5047 100644 --- a/gcc/java/lex.h +++ b/gcc/java/lex.h @@ -188,7 +188,6 @@ extern void java_destroy_lexer (java_lexer *); #define BUILD_OPERATOR(TOKEN) return TOKEN #define BUILD_OPERATOR2(TOKEN) return ASSIGN_ANY_TK #define SET_LVAL_NODE(NODE) -#define SET_LVAL_NODE_TYPE(NODE, TYPE) #define BUILD_ID_WFL(EXP) (EXP) #define JAVA_FLOAT_RANGE_ERROR(S) {} #define JAVA_INTEGRAL_RANGE_ERROR(S) do { } while (0) @@ -225,11 +224,6 @@ extern void java_destroy_lexer (java_lexer *); } /* Set java_lval->node and TREE_TYPE(java_lval->node) in macros */ #define SET_LVAL_NODE(NODE) java_lval->node = (NODE) -#define SET_LVAL_NODE_TYPE(NODE,TYPE) \ - { \ - java_lval->node = (NODE); \ - TREE_TYPE (java_lval->node) = (TYPE); \ - } /* Wrap identifier around a wfl */ #define BUILD_ID_WFL(EXP) build_wfl_node ((EXP)) /* Special ways to report error on numeric literals */ |