Commit a73a6e0c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ntdll: Specify div to be divl.

Avoids a clang bug.
parent 836308ff
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment