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
PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr70155-10.c
blob
2d0b91f5250b51af3b052e5df65d4fb9f1c03cdb
1
/* { dg-do compile { target int128 } } */
2
/* { dg-options "-O2 -msse2 -mtune=core2 -dp" } */
3
4
extern
__int128 a
;
5
6
struct
foo
7
{
8
__int128 i
;
9
}
__attribute__
((
packed
));
10
11
extern
struct
foo x
;
12
13
void
14
foo
(
void
)
15
{
16
a
=
x
.
i
;
17
}
18
19
/* { dg-final { scan-assembler-not "movv1ti_internal" } } */