repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wstrict-aliasing-4.C
blob
e877c70fb1d06466f99c23b586c257ad9a22c00e
1
/* { dg-do compile } */
2
/* { dg-options "-Wstrict-aliasing=2 -O2" } */
3
4
double x;
5
6
template <typename T>
7
T *foo(void)
8
{
9
int a[2];
10
float *y = (float *)a; /* { dg-bogus "strict-aliasing" } */
11
return (T *)&x; /* { dg-bogus "strict-aliasing" } */
12
}
13