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
/
qual-assign-7.c
blob
3e064e82f5f3cecc2fe5659b2ba76b95b87db88d
1
/* test that assignment drops qualifiers, Bug 98047 */
2
/* { dg-do compile } */
3
/* { dg-options "" } */
4
5
6
volatile
int
jv
;
7
extern
int
j
;
8
extern
typeof
(
jv
=
1
)
j
;
9
10
_Atomic
int
ja
;
11
extern
typeof
(
ja
=
1
)
j
;
12
13
int
*
__restrict pa
;
14
extern
int
*
p
;
15
extern
typeof
(
pa
=
0
)
p
;
16
17
18