mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 23:11:36 +08:00
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
This commit is contained in:
parent
6bd5968441
commit
e1a558374d
@ -6,6 +6,13 @@
|
||||
(permute_vec_elements): Use gimple_get_lhs instead of
|
||||
gimple_assign_lhs.
|
||||
|
||||
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
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user