AVR: target/85624 - Use HImode for clrmemqi alignment.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp25.c
bloba49f0793f96299d061dc00293f5e05f75db98d9c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-fre -fdump-tree-vrp1" } */
4 extern void abort ();
5 extern void arf ();
6 int tree_code_length[100];
8 void
9 blah (int code1)
11 unsigned char D18670;
13 if (code1 != 53) goto L0; else goto L1;
15 L0:
16 abort ();
18 L1:
19 D18670 = tree_code_length[53];
20 if (D18670 <= 1) goto L2; else goto L3;
22 L2:
23 abort ();
25 L3:
26 if (D18670 == 2) goto L4; else goto L5;
28 L4:
29 abort ();
31 L5:
32 arf ();
33 if (code1 != 53) goto L6; else goto L7;
35 L6:
36 abort ();
38 L7:
39 if (D18670 <= 2) goto L8; else goto L9;
41 L8:
42 abort ();
44 L9:
45 return;
49 /* The second test of (code1 != 53) and the test (D18670 <= 2) are
50 both totally subsumed by earlier tests and thus should be folded
51 away using VRP. */
52 /* { dg-final { scan-tree-dump-times "if" 3 "vrp1" } } */