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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr64511.c
blob
83cb5af807c59492c19e913e5ff7e0f2128a548b
1
/* PR debug/64511 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -g" } */
4
5
int
a
,
c
;
6
int
*
volatile
b
;
7
8
void
9
foo
(
int
p
)
10
{
11
int
d
;
12
int
*
e
= &
a
;
13
d
= ((
p
==
0
) & *
e
) !=
0
;
14
b
=
e
;
15
for
(;
c
;)
16
;
17
}
18
19
void
20
bar
(
void
)
21
{
22
foo
(
1
);
23
}