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
Corrected date in changelog
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68306-2.c
blob
4672ebe79876e0c85778330985b75434b5acc450
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
4
5
struct
{
6
int
tz_minuteswest
;
7
int
tz_dsttime
;
8
}
a
,
b
;
9
void
fn1
() {
10
b
.
tz_minuteswest
=
a
.
tz_minuteswest
;
11
b
.
tz_dsttime
=
a
.
tz_dsttime
;
12
}