1 /* { dg-do compile } */
2 /* { dg-options "-Os" } */
3
4 void test(unsigned int count, double array[])
5 {
6 unsigned int i;
7 for (i = 0; i < count; ++i)
8 array[i] = 8.988474246316506e+307;
9 }
10
11 /* { dg-final { scan-assembler-not "l32r" } } */