]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
analyzer: add regression tests [PR95152]
authorDavid Malcolm <dmalcolm@redhat.com>
Thu, 20 Aug 2020 21:50:14 +0000 (17:50 -0400)
committerDavid Malcolm <dmalcolm@redhat.com>
Fri, 21 Aug 2020 01:15:05 +0000 (21:15 -0400)
PR analyzer/95152 reports various ICEs in
region_model::get_or_create_mem_ref.

I removed this function as part of the state rewrite in
r11-2694-g808f4dfeb3a95f50f15e71148e5c1067f90a126d.
I've verified that these two test cases reproduce the issue with 10.2
and don't ICE with trunk; adding them as regression tests.

gcc/testsuite/ChangeLog:
PR analyzer/95152
* gcc.dg/analyzer/pr95152-4.c: New test.
* gcc.dg/analyzer/pr95152-5.c: New test.

gcc/testsuite/gcc.dg/analyzer/pr95152-4.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/analyzer/pr95152-5.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/analyzer/pr95152-4.c b/gcc/testsuite/gcc.dg/analyzer/pr95152-4.c
new file mode 100644 (file)
index 0000000..f2a72ca
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-additional-options "-Wno-pointer-to-int-cast" } */
+extern void my_func (int);
+typedef struct {
+  int var;
+} info_t;
+extern void *_data_offs;
+void test()
+{
+  info_t *info = ((void *)((void *)1) + ((unsigned int)&_data_offs));
+  my_func(info->var == 0);
+}
diff --git a/gcc/testsuite/gcc.dg/analyzer/pr95152-5.c b/gcc/testsuite/gcc.dg/analyzer/pr95152-5.c
new file mode 100644 (file)
index 0000000..604b784
--- /dev/null
@@ -0,0 +1,6 @@
+/* { dg-additional-options "-Wno-incompatible-pointer-types" } */
+void foo(void)
+{
+  void (*a[1]) ();
+  void (*p) () = a + 1;
+}