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-6.C
blob
6f935c8540bf8aefd4aa3312777816b96fbc0f7e
1
/* { dg-do compile } */
2
/* { dg-options "-Wstrict-aliasing=2 -O2" } */
3
4
int foo ()
5
{
6
char buf[8];
7
return *((int *)buf); /* { dg-warning "strict-aliasing" } */
8
}
9