gcc/testsuite/ChangeLog:
PR middle-end/86058
* gcc.dg/pr86058.c: New test.
--- /dev/null
+/* PR middle-end/86058 - TARGET_MEM_REF causing incorrect message for
+ -Wmaybe-uninitialized warning
+ { dg-do compile }
+ { dg-options "-O2 -Wuninitialized -Wmaybe-uninitialized" } */
+
+extern void foo (int *);
+
+void zip (int *out, int indx)
+{
+ int arr[10];
+
+ for (int i = 0; i < indx; ++i)
+ out[i] = arr[i] + 1; // { dg-warning "'arr\\\[i]' may be used uninitialized" "pr?????" { xfail *-*-* } }
+ // { dg-warning "'arr' may be used uninitialized" "actual" { target *-*-* } .-1 }
+
+ foo (arr);
+ foo (out);
+}