+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.
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)
+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
--- /dev/null
+/* 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);
+}