1/* { dg-options "-Os" }  */
2/* { dg-do compile } */
3
4void foo(int* p)
5{
6  p[0] = 1;
7  p[1] = 0;
8}
9
10/* { dg-final { scan-assembler "strd|stm" } } */
11