Commit e1a55837 by Nick Clifton Committed by Nick Clifton

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 <bigotp@acm.org>

From-SVN: r206250
parent 6bd59684
...@@ -7,6 +7,13 @@ ...@@ -7,6 +7,13 @@
gimple_assign_lhs. gimple_assign_lhs.
2013-12-30 Nick Clifton <nickc@redhat.com> 2013-12-30 Nick Clifton <nickc@redhat.com>
Peter Bigot <bigotp@acm.org>
PR target/59631
* stor-layout.c (get_mode_bounds): Use GET_MODE_PRECISION instead
of GET_MODE_BITSIZE.
2013-12-30 Nick Clifton <nickc@redhat.com>
* config/msp430/msp430.c (msp430_print_operand): Rename %B to %b * config/msp430/msp430.c (msp430_print_operand): Rename %B to %b
and %A to %Q. Add %A, %B, %C and %D as selectors for 16-bit parts and %A to %Q. Add %A, %B, %C and %D as selectors for 16-bit parts
...@@ -2816,7 +2816,7 @@ get_mode_bounds (enum machine_mode mode, int sign, ...@@ -2816,7 +2816,7 @@ get_mode_bounds (enum machine_mode mode, int sign,
enum machine_mode target_mode, enum machine_mode target_mode,
rtx *mmin, rtx *mmax) rtx *mmin, rtx *mmax)
{ {
unsigned size = GET_MODE_BITSIZE (mode); unsigned size = GET_MODE_PRECISION (mode);
unsigned HOST_WIDE_INT min_val, max_val; unsigned HOST_WIDE_INT min_val, max_val;
gcc_assert (size <= HOST_BITS_PER_WIDE_INT); gcc_assert (size <= HOST_BITS_PER_WIDE_INT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment