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
/
pr111303.c
blob
eaabe55c105d4c39a90851f9aeda0dcd411c6586
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
/* Make sure no ICE. */
5
unsigned char
a
;
6
int
b
(
int
c
) {
7
if
(
c
>=
5000
)
8
return
c
/
5
;
9
}
10
void
d
() {
b
(
a
-
5
); }
11
int
main
() {}