Disable gnat.dg/socket1.adb on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / c-c++-common / ubsan / pr59667.c
blobd5346611026734cabdeece86647e16041829c3bd
1 /* { dg-do run } */
2 /* { dg-options "-fsanitize=undefined" } */
3 /* { dg-shouldfail "ubsan" } */
5 int
6 main (void)
8 unsigned int len = 1;
9 float (*P)[len][len] = 0;
10 (*P)[0][0] = 1;
11 return 0;
14 /* { dg-output "store to null pointer of type 'float'" } */