2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / msa-fp-cc.c
blob3d293f30805da4b02aa5b0521cbbdfc01c8d4014
1 /* { dg-do compile } */
2 /* { dg-options "-mabi=32 -mfp64 -mhard-float -mmsa" } */
3 typedef float v4f32 __attribute__((vector_size(16)));
4 typedef double v2f64 __attribute__((vector_size(16)));
6 v4f32
7 fcmpOeqVector4 (v4f32 a, v4f32 b)
9 return a + b;
12 v2f64
13 fcmpOeqVector2 (v2f64 a, v2f64 b)
15 return a + b;
18 /* { dg-final { scan-assembler-not "copy_s" } } */
19 /* { dg-final { scan-assembler-not "insert" } } */