ntdll: Specify div to be divl.

Avoids a clang bug.
This commit is contained in:
Marcus Meissner 2011-05-29 20:59:01 +02:00 committed by Alexandre Julliard
parent 836308ff17
commit a73a6e0cde

View File

@ -264,7 +264,7 @@ UINT WINAPI RtlEnlargedUnsignedDivide( ULONGLONG a, UINT b, UINT *remptr )
p1 = a >> 32;
p2 = a & 0xffffffffLL;
__asm__("div %4,%%eax"
__asm__("divl %4,%%eax"
: "=a" (ret), "=d" (rem)
: "0" (p2), "1" (p1), "g" (b) );
if (remptr) *remptr = rem;