Use range_query object in array bounds class.
Now that all dependencies of array_bounds_checker take a range_query, we can sever the relationship with vr_values. Changing this will allow us to use the array_bounds_checker with VRP, evrp, or the ranger. Tested on x86-64 Linux. gcc/ChangeLog: * gimple-array-bounds.h (class array_bounds_checker): Change ranges type to range_query.
This commit is contained in:
parent
50752b751f
commit
435f90187e
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ class array_bounds_checker
|
|||
friend class check_array_bounds_dom_walker;
|
||||
|
||||
public:
|
||||
array_bounds_checker (struct function *fun, class vr_values *v)
|
||||
array_bounds_checker (struct function *fun, range_query *v)
|
||||
: fun (fun), ranges (v) { }
|
||||
void check ();
|
||||
|
||||
|
@ -37,7 +37,7 @@ private:
|
|||
const value_range *get_value_range (const_tree op);
|
||||
|
||||
struct function *fun;
|
||||
class vr_values *ranges;
|
||||
range_query *ranges;
|
||||
};
|
||||
|
||||
#endif // GCC_GIMPLE_ARRAY_BOUNDS_H
|
||||
|
|
Loading…
Add table
Reference in a new issue