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
/
pr48685.c
blob
36df0cc5f313e7e0ea622a1e4943e107da2d1068
1
/* PR c/48685 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
6
main
()
7
{
8
int
v
=
1
;
9
(
void
) (
1
==
2
? (
void
)
0
: (
v
=
0
));
10
return
v
;
11
}