modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr86123.c (about) 1 /* PR middle-end/86123 */ 2 3 int 4 foo (_Complex unsigned x, _Complex unsigned y) 5 { 6 _Complex unsigned t1 = x / y; 7 int t2 = (t1 != 0); 8 return t2; 9 } 10 11 int 12 bar (_Complex unsigned x, _Complex unsigned y) 13 { 14 _Complex unsigned t1 = x / y; 15 int t2 = (t1 == 0); 16 return t2; 17 }