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
Fix gcc.dg/vect/bb-slp-77.c for x86
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr69171-2.c
blob
80e1a097f20ed26baa752465a899a294c5311305
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -msse2 -mno-avx -mfpmath=sse" } */
3
4
#pragma pack(2)
5
struct
{
6
long long int
n
;
7
}
a
;
8
extern
void
fn2
(
float
);
9
void
10
fn1
()
11
{
12
fn2
(
a
.
n
);
13
}