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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr26626.c
blob
a4e03012b253ee79a96512f36c3e087ea181f330
1
typedef
union
{
2
int
d
;
3
}
U
;
4
5
int
rv
;
6
void
breakme
()
7
{
8
U
*
rv0
;
9
U
*
pretmp
= (
U
*)&
rv
;
10
rv0
=
pretmp
;
11
rv0
->
d
=
42
;
12
}
13