diff options
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1338,17 +1338,12 @@ struct tree_exp GTY(()) #define SSA_NAME_VALUE(N) \ SSA_NAME_CHECK (N)->ssa_name.value_handle -/* Range information for SSA_NAMEs. */ -#define SSA_NAME_VALUE_RANGE(N) \ - SSA_NAME_CHECK (N)->ssa_name.value_range - /* Auxiliary pass-specific data. */ #define SSA_NAME_AUX(N) \ SSA_NAME_CHECK (N)->ssa_name.aux #ifndef _TREE_FLOW_H struct ptr_info_def; -struct value_range_def; #endif @@ -1386,9 +1381,6 @@ struct tree_ssa_name GTY(()) as well. */ tree value_handle; - /* Value range information. */ - struct value_range_def *value_range; - /* Auxiliary information stored with the ssa name. */ PTR GTY((skip)) aux; @@ -3601,6 +3593,7 @@ extern bool tree_swap_operands_p (tree, tree, bool); extern enum tree_code swap_tree_comparison (enum tree_code); extern bool ptr_difference_const (tree, tree, HOST_WIDE_INT *); +extern enum tree_code invert_tree_comparison (enum tree_code, bool); /* In builtins.c */ extern tree fold_builtin (tree, tree, bool); |