Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git] / gcc / testsuite / gcc.dg / predict-15.c
blob2a8c3ea85971ffcfb11796775c695b94271685c1
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 int main(int argc, char **argv)
6 if (argc == 123)
7 goto exit;
8 else
10 return 0;
13 exit:
14 return 1;
17 /* { dg-final { scan-tree-dump "goto heuristics of edge" "profile_estimate"} } */