File: pr81346-1.c

package info (click to toggle)
gcc-arm-none-eabi 15%3A14.2.rel1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,099,328 kB
  • sloc: cpp: 3,627,108; ansic: 2,571,498; ada: 834,230; f90: 235,082; makefile: 79,231; asm: 74,984; xml: 51,692; exp: 39,736; sh: 33,298; objc: 15,629; python: 15,069; fortran: 14,429; pascal: 7,003; awk: 5,070; perl: 3,106; ml: 285; lisp: 253; lex: 204; haskell: 135
file content (37 lines) | stat: -rw-r--r-- 2,011 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* PR tree-optimization/81346 */
/* { dg-do compile { target int32 } } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* { dg-final { scan-tree-dump-times "return 1;" 32 "optimized" } } */

int f00 (int x) { return x / 49152 > -49152; }
int f01 (int x) { int a = 49152, b = -49152; return x / a > b; }
int f02 (int x) { return x / 49152 >= -49152; }
int f03 (int x) { int a = 49152, b = -49152; return x / a >= b; }
int f04 (int x) { return x / 49152 < 49152; }
int f05 (int x) { int a = 49152, b = 49152; return x / a < b; }
int f06 (int x) { return x / 49152 <= 49152; }
int f07 (int x) { int a = 49152, b = 49152; return x / a <= b; }
int f08 (int x) { return x / 46340 >= -46341; }
int f09 (int x) { int a = 46340, b = -46341; return x / a >= b; }
int f10 (int x) { return x / 46340 <= 46341; }
int f11 (int x) { int a = 46340, b = 46341; return x / a <= b; }
int f12 (int x) { return x / 49152 != -49152; }
int f13 (int x) { int a = 49152, b = -49152; return x / a != b; }
int f14 (int x) { return x / 49152 != 49152; }
int f15 (int x) { int a = 49152, b = 49152; return x / a != b; }
int f16 (int x) { return x / -49152 > -49152; }
int f17 (int x) { int a = -49152, b = -49152; return x / a > b; }
int f18 (int x) { return x / -49152 >= -49152; }
int f19 (int x) { int a = -49152, b = -49152; return x / a >= b; }
int f20 (int x) { return x / -49152 < 49152; }
int f21 (int x) { int a = -49152, b = 49152; return x / a < b; }
int f22 (int x) { return x / -49152 <= 49152; }
int f23 (int x) { int a = -49152, b = 49152; return x / a <= b; }
int f24 (int x) { return x / -46340 >= -46341; }
int f25 (int x) { int a = -46340, b = -46341; return x / a >= b; }
int f26 (int x) { return x / -46340 <= 46341; }
int f27 (int x) { int a = -46340, b = 46341; return x / a <= b; }
int f28 (int x) { return x / -49152 != 49152; }
int f29 (int x) { int a = -49152, b = 49152; return x / a != b; }
int f30 (int x) { return x / -49152 != -49152; }
int f31 (int x) { int a = -49152, b = -49152; return x / a != b; }