repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
assign-1.c
blob
0daaada91fc39c818cf1225eb9320b884eeeb4a5
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
4
volatile
int
count
;
5
void
bar
(
int
);
6
void
foo
()
7
{
8
bar
(
count
++);
9
}
10
11
/* { dg-final { scan-tree-dump-times "count =" 1 "optimized"} } */