diff options
author | Tomas Bily <tomby@gcc.gnu.org> | 2008-04-23 14:50:17 +0200 |
---|---|---|
committer | Tomas Bily <tomby@gcc.gnu.org> | 2008-04-23 14:50:17 +0200 |
commit | a134e5f3702af8504e2744bebd3a034914ab7d40 (patch) | |
tree | fc970abad33f221b6b9b0e13eae65c93c720eb12 /gcc/varasm.c | |
parent | e24703834e9d89319aaf494cd44f19ac82e30651 (diff) | |
download | gcc-a134e5f3702af8504e2744bebd3a034914ab7d40.zip gcc-a134e5f3702af8504e2744bebd3a034914ab7d40.tar.gz gcc-a134e5f3702af8504e2744bebd3a034914ab7d40.tar.bz2 |
tree-cfg.c (verify_expr): Check for NON_LVALUE_EXPR as unreachable case.
* tree-cfg.c (verify_expr): Check for NON_LVALUE_EXPR as
unreachable case.
* tree-vrp.c (extract_range_from_unary_expr): Removed unused
NON_LVALUE_EXPR.
* tree-ssa-threadedge.c (simplify_control_stmt_condition):
Likewise.
* tree-ssa-structalias.c (get_constraint_for): Likewise.
* tree-inline.c (estimate_num_insns_1): Likewise.
* varasm.c (const_hash_1, compare_constant, copy_constant)
(compute_reloc_for_constant, output_addressed_constants):
Likewise.
* emit-rtl.c (component_ref_for_mem_expr)
(set_mem_attributes_minus_bitpos): Likewise.
* expr.c (highest_pow2_factor, expand_expr_real_1, )
(is_aligning_offset): Likewise.
* dwarf2out.c (loc_descriptor_from_tree_1, add_bound_info):
Likewise.
* tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Likewise.
* dojump.c (do_jump): Likewise.
* builtins.c (get_pointer_alignment, get_memory_rtx)
(integer_valued_real_p, fold_builtin_next_arg): Likewise.
* tree-scalar-evolution.c (instantiate_parameters_1): Likewise.
From-SVN: r134591
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index bfdf367..518fe8a 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -2815,7 +2815,6 @@ const_hash_1 (const tree exp) case NOP_EXPR: case CONVERT_EXPR: - case NON_LVALUE_EXPR: return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2; default: @@ -2970,7 +2969,6 @@ compare_constant (const tree t1, const tree t2) case NOP_EXPR: case CONVERT_EXPR: - case NON_LVALUE_EXPR: case VIEW_CONVERT_EXPR: return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)); @@ -3018,7 +3016,6 @@ copy_constant (tree exp) case NOP_EXPR: case CONVERT_EXPR: - case NON_LVALUE_EXPR: case VIEW_CONVERT_EXPR: return build1 (TREE_CODE (exp), TREE_TYPE (exp), copy_constant (TREE_OPERAND (exp, 0))); @@ -3917,7 +3914,6 @@ compute_reloc_for_constant (tree exp) case NOP_EXPR: case CONVERT_EXPR: - case NON_LVALUE_EXPR: case VIEW_CONVERT_EXPR: reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0)); break; @@ -3973,7 +3969,6 @@ output_addressed_constants (tree exp) case NOP_EXPR: case CONVERT_EXPR: - case NON_LVALUE_EXPR: case VIEW_CONVERT_EXPR: output_addressed_constants (TREE_OPERAND (exp, 0)); break; |