libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr89430-8-mem-ref-size.c
blob5f93112acf7d38bd7e207b333b7906e9137f444d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-cselim -fdump-tree-cselim-details" } */
4 int *t;
6 int f1 (int tt)
8 int *t1 = t;
9 *t1 = -5;
10 if (*t1 < tt)
11 *((unsigned *) t1) = 5;
12 return *t1;
15 /* { dg-final { scan-tree-dump "Conditional store replacement" "cselim" } } */