mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 16:51:13 +08:00
PR middle-end/97556 - ICE on excessively large index into a multidimensional array
gcc/ChangeLog: PR middle-end/97556 * builtins.c (access_ref::add_offset): Cap offset lower bound to at most the the upper bound. gcc/testsuite/ChangeLog: PR middle-end/97556 * gcc.dg/Warray-bounds-70.c: New test.
This commit is contained in:
parent
f3ced6772e
commit
bdf6524bc0
@ -321,7 +321,13 @@ void access_ref::add_offset (const offset_int &min, const offset_int &max)
|
||||
offrng[1] = maxoff;
|
||||
offset_int absmax = wi::abs (max);
|
||||
if (offrng[0] < absmax)
|
||||
offrng[0] += min;
|
||||
{
|
||||
offrng[0] += min;
|
||||
/* Cap the lower bound at the upper (set to MAXOFF above)
|
||||
to avoid inadvertently recreating an inverted range. */
|
||||
if (offrng[1] < offrng[0])
|
||||
offrng[0] = offrng[1];
|
||||
}
|
||||
else
|
||||
offrng[0] = 0;
|
||||
}
|
||||
|
18
gcc/testsuite/gcc.dg/Warray-bounds-70.c
Normal file
18
gcc/testsuite/gcc.dg/Warray-bounds-70.c
Normal file
@ -0,0 +1,18 @@
|
||||
/* PR middle-end/97556 - ICE on excessively large index into a multidimensional
|
||||
array
|
||||
{ dg-do compile }
|
||||
{ dg-options "-O2 -Wall" } */
|
||||
|
||||
#define SIZE_MAX __SIZE_MAX__
|
||||
|
||||
typedef __SIZE_TYPE__ size_t;
|
||||
|
||||
char a[1][3];
|
||||
|
||||
void f (int c)
|
||||
{
|
||||
size_t i = c ? SIZE_MAX / 2 : SIZE_MAX;
|
||||
a[i][0] = 0; // { dg-warning "\\\[-Warray-bounds" }
|
||||
}
|
||||
|
||||
// { dg-prune-output "\\\[-Wstringop-overflow=" }
|
Loading…
x
Reference in New Issue
Block a user