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
/
pr115236.c
blob
91edfab957ac6da78cf9241e06c8373edb5ff619
1
/* { dg-do run } */
2
/* { dg-options "-O -fno-tree-fre" } */
3
4
int
a
, *
b
= &
a
;
5
int
main
()
6
{
7
int
*
c
, *
volatile
*
d
= &
c
;
8
*
d
=
b
;
9
if
(
c
!= &
a
)
10
__builtin_abort
();
11
return
0
;
12
}