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
/
pr79690.c
blob
7bd93178fc901636a888d1a7b98e47813bd1521b
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -msse2 -mno-avx" } */
3
4
void
fill
(
unsigned char
__seg_gs
*
arr
,
unsigned char
c
,
long
n
)
5
{
6
for
(
long
i
=
0
;
i
<
n
; ++
i
)
7
arr
[
i
] =
c
;
8
}
9
10
/* { dg-final { scan-assembler "mov\[au\]p.\[ \t\]\[^,\]+, %gs:" } } */