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
/
torture
/
pr71452.c
blob
8948d39fdafd6145c882251e10bb37154c7ef0bd
1
/* { dg-do run } */
2
3
int
main
()
4
{
5
_Bool b
;
6
*(
char
*)&
b
=
123
;
7
if
(*(
char
*)&
b
!=
123
)
8
__builtin_abort
();
9
return
0
;
10
}