blob: b68c3d07ec151799a00c9d9aaadd48f7c5128066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do run } */
void
f ()
{
unsigned long tmp[4] __attribute__((aligned(16)));
asm("movaps %%xmm0, (%0)" : : "r" (tmp) : "memory");
}
int
main()
{
f();
return 0;
}
|