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
/
pr101741.c
blob
6587dca77d588e8101552a8a43ac3e9ede0e2725
1
/* PR tree-optimization/101741 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 " } */
4
5
int
6
foo
(
void
);
7
8
unsigned int
9
toupper
(
int
c
)
10
{
11
c
=
foo
();
12
while
(
c
)
13
c
=
toupper
(
c
);
14
15
return
c
;
16
}