]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/pr15825-1.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / pr15825-1.c.expected
1 /* PR middle-end/15825 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
4
5 unsigned int foo(long long high, int unsigned_p)
6 {
7   int i;
8   if (high < 0)
9     if (!unsigned_p)
10     {
11       i = 1;
12       goto t;
13     }
14   i = 0;
15 t:
16   return i;
17 }
18