blob: a61a84ff28b0569b18a6ea87af09e34f94aa0390 [file] [log] [blame]
Duncan Sands5fe97a02010-11-25 21:39:17 +00001// RUN: %llvmgcc %s -S -m32 -fasm-blocks -o /dev/null
Dale Johannesend4e38942010-07-19 18:22:40 +00002// This should not warn about unreferenced label. 8195660.
3// XFAIL: *
4// XTARGET: x86,i386,i686
5
6void quarterAsm(int array[], int len)
7{
8 __asm
9 {
10 mov esi, array;
11 mov ecx, len;
12 shr ecx, 2;
13loop:
14 movdqa xmm0, [esi];
15 psrad xmm0, 2;
16 movdqa [esi], xmm0;
17 add esi, 16;
18 sub ecx, 1;
19 jnz loop;
20 }
21}