* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / sh / pr52483-4.c
blob81a24d4f48118db9e20b076801eebfc2248032b6
1 /* Check that loads/stores from/to volatile floating point mems utilize
2 indexed addressing modes. */
3 /* { dg-do compile { target { any_fpu } } } */
4 /* { dg-options "-O1" } */
5 /* { dg-final { scan-assembler-times "@\\(r0," 2 } } */
7 float
8 test_00 (volatile float* x, unsigned int y)
10 return x[y];
13 void
14 test_100 (volatile float* x, unsigned int y, float z)
16 x[y] = z;