diff options
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 0edd871b685..34d85de495f 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -490,7 +490,7 @@ rtx_to_double_int (const_rtx cst) double_int r; if (CONST_INT_P (cst)) - r = shwi_to_double_int (INTVAL (cst)); + r = double_int::from_shwi (INTVAL (cst)); else if (CONST_DOUBLE_AS_INT_P (cst)) { r.low = CONST_DOUBLE_LOW (cst); |