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
/
asan
/
pr64170.c
blob
c4edcaa39d16f27bf78ad8513afe0e66ac38e9b4
1
/* PR sanitizer/64170 */
2
/* { dg-do compile } */
3
/* { dg-options "-fsanitize=address,null" } */
4
5
int
a
, *
b
,
c
;
6
void
bar
(
int
);
7
8
void
9
foo
(
void
)
10
{
11
char
*
d
= (
char
*)
b
;
12
if
(
d
[
0
] &&
d
[
1
])
13
return
;
14
if
(
c
)
15
a
= *(
int
*)
d
;
16
bar
(*(
int
*)
d
);
17
}