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
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr51692.c
blob
34a81c29de127295b4dca2f046ddd0502ea0c646
1
/* { dg-do compile } */
2
3
int
4
main
()
5
{
6
volatile
double
d
=
0.0
;
7
double
*
p
=
__builtin_calloc
(
1
,
sizeof
(
double
));
8
d
+=
1.0
;
9
*
p
+=
2.0
;
10
__builtin_free
(
p
);
11
return
0
;
12
}
13