convert: Fix test for out of bounds shift count [PR113574]
commitfb1b7e2fec951ba0bf4f68fac6a16929f4f63910
authorJakub Jelinek <jakub@redhat.com>
Thu, 25 Jan 2024 12:15:23 +0000 (25 13:15 +0100)
committerJakub Jelinek <jakub@redhat.com>
Thu, 25 Jan 2024 12:15:23 +0000 (25 13:15 +0100)
treeafaed299df64594243193e3ad76f5c0ccc665544
parentc3de14ba1ba0e77254118af64ed881f115ee42a0
convert: Fix test for out of bounds shift count [PR113574]

The following patch is miscompiled, because convert_to_integer_1 for
LSHIFT_EXPR tests if the INTEGER_CST shift count is too high, but
incorrectly compares it against TYPE_SIZE rather than TYPE_PRECISION.
The type in question is unsigned _BitInt(1), which has TYPE_PRECISION 1,
TYPE_SIZE 8, and the shift count is 2 in that case.

2024-01-25  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/113574
* convert.cc (convert_to_integer_1) <case LSHIFT_EXPR>: Compare shift
count against TYPE_PRECISION rather than TYPE_SIZE.

* gcc.dg/torture/bitint-52.c: New test.
gcc/convert.cc
gcc/testsuite/gcc.dg/torture/bitint-52.c [new file with mode: 0644]