PR middle-end/88273 - [8/9 Regression] warning: 'memcpy' offset [-527, -529]

PR middle-end/88273 - [8/9 Regression] warning: 'memcpy' offset [-527, -529]
is out of the bounds [0, 16]

gcc/ChangeLog:

	PR middle-end/88273
	* gimple-ssa-warn-restrict.c (builtin_memref::extend_offset_range):
	Handle anti-ranges the same as no range at all.

gcc/testsuite/ChangeLog:

	PR middle-end/88273
	* gcc.dg/Warray-bounds-38.c: New test.

From-SVN: r268048
This commit is contained in:
Martin Sebor 2019-01-17 22:52:47 +00:00 committed by Martin Sebor
parent 17ad43dd4c
commit 77efc5c25c
4 changed files with 42 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2019-01-17 Martin Sebor <msebor@redhat.com>
PR middle-end/88273
* gimple-ssa-warn-restrict.c (builtin_memref::extend_offset_range):
Handle anti-ranges the same as no range at all.
2018-01-17 Steve Ellcey <sellcey@cavium.com>
* config/aarch64/aarch64.c (cgraph.h): New include.

View File

@ -319,13 +319,9 @@ builtin_memref::extend_offset_range (tree offset)
offrange[0] += offset_int::from (min, SIGNED);
offrange[1] += offset_int::from (max, SIGNED);
}
else if (rng == VR_ANTI_RANGE)
{
offrange[0] += offset_int::from (max + 1, SIGNED);
offrange[1] += offset_int::from (min - 1, SIGNED);
}
else
{
/* Handle an anti-range the same as no range at all. */
gimple *stmt = SSA_NAME_DEF_STMT (offset);
tree type;
if (is_gimple_assign (stmt)

View File

@ -1,3 +1,8 @@
2019-01-17 Martin Sebor <msebor@redhat.com>
PR middle-end/88273
* gcc.dg/Warray-bounds-38.c: New test.
2018-01-17 Steve Ellcey <sellcey@cavium.com>
* c-c++-common/gomp/pr60823-1.c: Add aarch64 specific

View File

@ -0,0 +1,30 @@
/* PR middle-end/88273 - bogus warning: 'memcpy' offset [-527, -529]
is out of the bounds [0, 16]
{ dg-do compile }
{ dg-options "-O2 -Wall" } */
typedef __SIZE_TYPE__ size_t;
void *q;
size_t x, y;
inline void f (char *p, int i, size_t j)
{
size_t n = y ? y : j;
p += x - i;
__builtin_memcpy (q, p, n); /* { dg-bogus "bounds" } */
x = n;
}
void g (void)
{
struct { char a[16]; } s;
f (q, 0, sizeof s);
f (s.a, 33 * sizeof s, 1);
}