]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/ipa-prop.cc
Conversion to irange wide_int API.
[gcc.git] / gcc / ipa-prop.cc
index c6d4585aed17e36baec9303d17500f96bf6b22e7..0f3cb3dd9f9bf8e2c3c2786acc5f10928a841513 100644 (file)
@@ -2220,7 +2220,8 @@ ipa_get_value_range (value_range *tmp)
 static value_range *
 ipa_get_value_range (enum value_range_kind kind, tree min, tree max)
 {
-  value_range tmp (min, max, kind);
+  value_range tmp (TREE_TYPE (min),
+                  wi::to_wide (min), wi::to_wide (max), kind);
   return ipa_get_value_range (&tmp);
 }
 
This page took 0.03013 seconds and 5 git commands to generate.