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
* ru.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wstrict-aliasing-bogus-struct-included.C
blob
3f55c78c96d6709b7e356332bfb64b7246998d21
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
3
4
5
struct S {
6
int i;
7
float f;
8
};
9
10
int foo () {
11
struct S s;
12
s.i = 7;
13
float* f = &s.f; /* { dg-bogus "float included in struct S" } */
14
*f = 2.0;
15
return s.i + (int)s.f;
16
}