1 /* PR tree-optimization/81346 */
2 /* { dg-do compile { target int32 } } */
3 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 /* { dg-final { scan-tree-dump-times "return 1;" 32 "optimized" } } */
5 
f00(int x)6 int f00 (int x) { return x / 49152 > -49152; }
f01(int x)7 int f01 (int x) { int a = 49152, b = -49152; return x / a > b; }
f02(int x)8 int f02 (int x) { return x / 49152 >= -49152; }
f03(int x)9 int f03 (int x) { int a = 49152, b = -49152; return x / a >= b; }
f04(int x)10 int f04 (int x) { return x / 49152 < 49152; }
f05(int x)11 int f05 (int x) { int a = 49152, b = 49152; return x / a < b; }
f06(int x)12 int f06 (int x) { return x / 49152 <= 49152; }
f07(int x)13 int f07 (int x) { int a = 49152, b = 49152; return x / a <= b; }
f08(int x)14 int f08 (int x) { return x / 46340 >= -46341; }
f09(int x)15 int f09 (int x) { int a = 46340, b = -46341; return x / a >= b; }
f10(int x)16 int f10 (int x) { return x / 46340 <= 46341; }
f11(int x)17 int f11 (int x) { int a = 46340, b = 46341; return x / a <= b; }
f12(int x)18 int f12 (int x) { return x / 49152 != -49152; }
f13(int x)19 int f13 (int x) { int a = 49152, b = -49152; return x / a != b; }
f14(int x)20 int f14 (int x) { return x / 49152 != 49152; }
f15(int x)21 int f15 (int x) { int a = 49152, b = 49152; return x / a != b; }
f16(int x)22 int f16 (int x) { return x / -49152 > -49152; }
f17(int x)23 int f17 (int x) { int a = -49152, b = -49152; return x / a > b; }
f18(int x)24 int f18 (int x) { return x / -49152 >= -49152; }
f19(int x)25 int f19 (int x) { int a = -49152, b = -49152; return x / a >= b; }
f20(int x)26 int f20 (int x) { return x / -49152 < 49152; }
f21(int x)27 int f21 (int x) { int a = -49152, b = 49152; return x / a < b; }
f22(int x)28 int f22 (int x) { return x / -49152 <= 49152; }
f23(int x)29 int f23 (int x) { int a = -49152, b = 49152; return x / a <= b; }
f24(int x)30 int f24 (int x) { return x / -46340 >= -46341; }
f25(int x)31 int f25 (int x) { int a = -46340, b = -46341; return x / a >= b; }
f26(int x)32 int f26 (int x) { return x / -46340 <= 46341; }
f27(int x)33 int f27 (int x) { int a = -46340, b = 46341; return x / a <= b; }
f28(int x)34 int f28 (int x) { return x / -49152 != 49152; }
f29(int x)35 int f29 (int x) { int a = -49152, b = 49152; return x / a != b; }
f30(int x)36 int f30 (int x) { return x / -49152 != -49152; }
f31(int x)37 int f31 (int x) { int a = -49152, b = -49152; return x / a != b; }
38