aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-range-fold.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gimple-range-fold.h')
-rw-r--r--gcc/gimple-range-fold.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimple-range-fold.h b/gcc/gimple-range-fold.h
index df24280..fbf6627 100644
--- a/gcc/gimple-range-fold.h
+++ b/gcc/gimple-range-fold.h
@@ -66,7 +66,7 @@ gimple_range_type (const gimple *s)
type = TREE_TYPE (type);
}
}
- if (type && vrange::supports_type_p (type))
+ if (type && Value_Range::supports_type_p (type))
return type;
return NULL_TREE;
}
@@ -79,7 +79,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) &&
- vrange::supports_type_p (TREE_TYPE (exp)))
+ Value_Range::supports_type_p (TREE_TYPE (exp)))
return exp;
return NULL_TREE;
}