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.
--- /dev/null
+/* { 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);
+}
--- /dev/null
+/* { dg-additional-options "-Wno-incompatible-pointer-types" } */
+void foo(void)
+{
+ void (*a[1]) ();
+ void (*p) () = a + 1;
+}