libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-dce-8.c
blob97d3dcf5520c01eb715bdf166a348cc94417dba3
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized" } */
4 int main()
6 int *p = __builtin_malloc (4);
7 *p = 4;
8 return 0;
11 /* { dg-final { scan-tree-dump-not "malloc" "optimized" } } */