diff options
Diffstat (limited to 'gcc/gimple-range-fold.h')
-rw-r--r-- | gcc/gimple-range-fold.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimple-range-fold.h b/gcc/gimple-range-fold.h index 491d573..37c4959 100644 --- a/gcc/gimple-range-fold.h +++ b/gcc/gimple-range-fold.h @@ -78,7 +78,7 @@ gimple_range_type (const gimple *s) type = TREE_TYPE (type); } } - if (type && Value_Range::supports_type_p (type)) + if (type && value_range::supports_type_p (type)) return type; return NULL_TREE; } @@ -91,7 +91,7 @@ gimple_range_ssa_p (tree exp) if (exp && TREE_CODE (exp) == SSA_NAME && !SSA_NAME_IS_VIRTUAL_OPERAND (exp) && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (exp) && - Value_Range::supports_type_p (TREE_TYPE (exp))) + value_range::supports_type_p (TREE_TYPE (exp))) return exp; return NULL_TREE; } |