diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2005-04-21 18:05:34 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2005-04-21 18:05:34 +0000 |
commit | 0e61db61a0d66106ef00396aa04871d94021ddef (patch) | |
tree | a6170c4a24e29bff50c537b8652482d6d413b2a3 /gcc/tree.c | |
parent | 7fc785d836a38912e6c48045fa7380f6e9e1c5c1 (diff) | |
download | gcc-0e61db61a0d66106ef00396aa04871d94021ddef.tar.gz |
lambda.h (lambda_vector_min_nz): Likewise.
* lambda.h (lambda_vector_min_nz): Likewise.
* langhooks.h (struct lang_hooks_for_types,
struct lang_hooks): Likewise.
* output.h (assemble_integer, this_is_asm_operands): Likewise.
* tree.h: Likewise.
* vec.h: Likewise.
* tree-flow-inline.h (relink_imm_use): Use gcc_assert.
* optabs.c (prepare_cmp_insn, emit_cmp_and_jump_insns): Reword
comments to avoid 'abort'. Use gcc_assert as necessary.
* opts.c (common_handle_option): Likewise.
* pretty-print.c (pp_base_format_text): Likewise.
* print-rtl.c (print_rtx): Likewise.
* read-rtl.c (read_rtx_filename, read_rtx_1): Likewise.
* regmove.c (try_auto_increment): Likewise.
* reload.c (find_valid_class, find_reloads_toplev,
find_equiv_reg): Likewise.
* reload1.c (reload, forget_old_reloads_1, function_invariant_p,
merge_assigned_reloads): Likewise.
* tree-inline.c (inline_forbidden_p_1,
estimate_num_insns_1): Likewise.
* tree-optimize.c (execute_todo): Likewise.
* tree-outof-ssa.c (eliminate_phi): Likewise.
* tree-ssa-alias.c (add_pointed_to_expr): Likewise.
* tree-ssa-ccp.c (maybe_fold_stmt_indirect): Likewise.
* tree-ssa-operands.c (parse_ssa_operands,
get_indirect_ref_operands, create_ssa_artficial_load_stmt): Likewise.
* tree-ssa-pre.c (find_or_generate_expression): Likewise.
* tree-ssanames.c (release_ssa_name): Likewise.
* tree.c (int_bit_position, int_byte_position, tree_low_cst,
walk_tree): Likewise.
* tree-ssa-operands.c (verify_abort): Fold into ..
(verify_imm_links): ... here.
From-SVN: r98519
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index a4969a0ae51..c8b6ea6a196 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -1496,9 +1496,9 @@ bit_position (tree field) DECL_FIELD_BIT_OFFSET (field)); } -/* Likewise, but return as an integer. Abort if it cannot be represented - in that way (since it could be a signed value, we don't have the option - of returning -1 like int_size_in_byte can. */ +/* Likewise, but return as an integer. It must be representable in + that way (since it could be a signed value, we don't have the + option of returning -1 like int_size_in_byte can. */ HOST_WIDE_INT int_bit_position (tree field) @@ -1516,9 +1516,9 @@ byte_position (tree field) DECL_FIELD_BIT_OFFSET (field)); } -/* Likewise, but return as an integer. Abort if it cannot be represented - in that way (since it could be a signed value, we don't have the option - of returning -1 like int_size_in_byte can. */ +/* Likewise, but return as an integer. It must be representable in + that way (since it could be a signed value, we don't have the + option of returning -1 like int_size_in_byte can. */ HOST_WIDE_INT int_byte_position (tree field) @@ -3838,7 +3838,7 @@ host_integerp (tree t, int pos) /* Return the HOST_WIDE_INT least significant bits of T if it is an INTEGER_CST and there is no overflow. POS is nonzero if the result must - be positive. Abort if we cannot satisfy the above conditions. */ + be positive. We must be able to satisfy the above conditions. */ HOST_WIDE_INT tree_low_cst (tree t, int pos) @@ -6411,7 +6411,7 @@ walk_type_fields (tree type, walk_tree_fn func, void *data, /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is called with the DATA and the address of each sub-tree. If FUNC returns a - non-NULL value, the traversal is aborted, and the value returned by FUNC + non-NULL value, the traversal is stopped, and the value returned by FUNC is returned. If PSET is non-NULL it is used to record the nodes visited, and to avoid visiting a node more than once. */ |