From e1a558374da76485aedf0452d53a26c4092dae9d Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 30 Dec 2013 17:37:08 +0000 Subject: re PR c++/59631 (ICE using _Cilk_spawn without -fcilkplus) PR target/59631 * stor-layout.c (get_mode_bounds): Use GET_MODE_PRECISION instead of GET_MODE_BITSIZE. Co-Authored-By: Peter Bigot From-SVN: r206250 --- gcc/stor-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/stor-layout.c') diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 675a123..26fa245 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -2816,7 +2816,7 @@ get_mode_bounds (enum machine_mode mode, int sign, enum machine_mode target_mode, rtx *mmin, rtx *mmax) { - unsigned size = GET_MODE_BITSIZE (mode); + unsigned size = GET_MODE_PRECISION (mode); unsigned HOST_WIDE_INT min_val, max_val; gcc_assert (size <= HOST_BITS_PER_WIDE_INT); -- cgit v1.1