Fix all tests that fail with -sanitize=return.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr15791-3.C
blobd70b08d4ff0fe1d3708e93d8e374087a84c5af4a
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
4 int f(int i, unsigned j)
6       int b[2];
7       if (&b[i] == &b[j])
8               return 1;
9       return 0;
12 /* { dg-final { scan-tree-dump-times "i == j" 0 "gimple" } } */