diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 06:59:36 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 06:59:36 +0000 |
commit | b4b343354bbff95311148aa83c504ab250e31252 (patch) | |
tree | 171267b91dec3b204cb26bca86f8cc66a3ccb134 /gcc/tree-flow-inline.h | |
parent | 19137b622b9fd357de36a78f343390e3ff42a677 (diff) | |
download | gcc-b4b343354bbff95311148aa83c504ab250e31252.tar.gz |
* fold-const.c (all_ones_mask_p, sign_bit_p, simple_operand_p,
fold_real_zero_addition_p, reorder_operands_p,
div_if_zero_remainder, fold_undefer_overflow_warnings,
int_binop_types_match_p, fold_convert_const_int_from_int,
fold_convert_const_int_from_real,
fold_convert_const_int_from_fixed,
fold_convert_const_real_from_real,
fold_convert_const_real_from_fixed,
fold_convert_const_fixed_from_fixed,
fold_convert_const_fixed_from_int,
fold_convert_const_fixed_from_real, maybe_lvalue_p,
fold_checksum_tree, fold_check_failed, print_fold_checksum,
debug_fold_checksum, multiple_of_p): Constify.
* tree-flow-inline.h (get_lineno): Likewise.
* tree-flow.h (get_lineno): Likewise.
* tree-object-size.c (compute_object_offset, addr_object_size,
alloc_object_size, pass_through_call): Likewise.
* tree-pretty-print.c (op_symbol, print_call_name,
print_struct_decl, do_niy): Likewise.
* tree.h (fold_undefer_overflow_warnings, multiple_of_p,
debug_fold_checksum): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128120 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index a5441fefacf..9fa5139c041 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -313,7 +313,7 @@ may_aliases (const_tree var) /* Return the line number for EXPR, or return -1 if we have no line number information for it. */ static inline int -get_lineno (tree expr) +get_lineno (const_tree expr) { if (expr == NULL_TREE) return -1; |