libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr27810.c
blob5c1945bb5c183f9cd7e43d97cfad19cc0a9c831b
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
4 int bar (int);
6 int qqq (int a)
8 int result;
9 result = bar (a);
10 return result;
13 /* We should not use an extra temporary for the result of the
14 function call. */
16 /* { dg-final { scan-tree-dump-times "int" 4 "gimple" } } */
17 /* { dg-final { scan-tree-dump-times "int D\\\." 1 "gimple" } } */