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
/
pr67120.c
blob
d22b314bd3fe83d726a414b8dd743c0ef33e1f6b
1
/* { dg-do run } */
2
3
volatile
int
*
volatile
*
a
;
4
static
volatile
int
*
volatile
**
b
= &
a
;
5
6
int
7
main
()
8
{
9
volatile
int
*
volatile
c
;
10
*
b
= &
c
;
11
12
if
(
a
!= &
c
)
13
__builtin_abort
();
14
15
return
0
;
16
}