[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr45182.c
blobad27ff88651f47215753ebe05f17ac6489ade0e1
1 typedef struct TypHeader {
2 struct TypHeader ** ptr;
3 } *TypHandle;
4 void PlainRange (TypHandle hdList, long lenList, long low, long inc)
6 long i;
7 for (i = 1; i <= lenList; i++ )
8 (((TypHandle*)((hdList)->ptr))[i] = (((TypHandle) (((long)(low + (i-1) *
9 inc) << 2) + 1))));