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
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr37742.C
blob
2bbb01723fbe6f0b5548809c827f2f7ccc9f8fec
1
/* { dg-do compile } */
2
3
__extension__ typedef __SIZE_TYPE__ size_t;
4
void* __valarray_get_memory(size_t __n);
5
int*__restrict__
6
__valarray_get_storage(size_t __n)
7
{
8
return static_cast<int* __restrict__>(__valarray_get_memory(__n));
9
}
10