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
/
avx-cmpss-2.c
blob
0fcc620c47077def3fb064d985b91193d9039735
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -mavx" } */
3
4
#include <xmmintrin.h>
5
6
__m128
7
foo
(
__m128 x
,
__m128 y
)
8
{
9
return
_mm_cmpeq_ss
(
x
,
y
);
10
}
11
12
13
/* { dg-final { scan-assembler "vcmpeqss" } } */