PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr42585.c
blobf3d8459cc7d44b22c22302678b4a81f5b1063847
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized" } */
4 struct _fat_ptr
6 unsigned char *curr;
7 unsigned char *base;
8 unsigned char *last_plus_one;
9 };
10 int Cyc_string_ungetc (int ignore, struct _fat_ptr *sptr);
11 int
12 Cyc_string_ungetc (int ignore, struct _fat_ptr *sptr)
14 struct _fat_ptr *_T0;
15 struct _fat_ptr *_T1;
16 struct _fat_ptr _T2;
17 int _T3;
18 struct _fat_ptr _ans;
19 int _change;
22 _T0 = sptr;
23 _T1 = sptr;
24 _T2 = *sptr;
25 _T3 = -1;
26 _ans = _T2;
27 _change = -1;
28 _ans.curr += 4294967295U;
29 *sptr = _ans;
30 return (0);
34 /* The local aggregates . */
35 /* Whether the structs are totally scalarized or not depends on the
36 MOVE_RATIO macro definition in the back end. The scalarization will
37 not take place when using small values for MOVE_RATIO. */
38 /* { dg-final { scan-tree-dump-times "struct _fat_ptr _ans" 0 "optimized" { target { ! "arm*-*-* powerpc*-*-* s390*-*-* sh*-*-*" } } } } */
39 /* { dg-final { scan-tree-dump-times "struct _fat_ptr _T2" 0 "optimized" { target { ! "arm*-*-* powerpc*-*-* s390*-*-* sh*-*-*" } } } } */
40 /* { dg-final { cleanup-tree-dump "optimized" } } */