From 5c2e1ab00cb0275b887ce1f0102d7f277c1aa210 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 23 Jan 2010 19:26:06 +0000 Subject: [PATCH] Jose Catena - Fix a typo in aulldvrm (one of the dividends was always wrong). See issue #5139 for more details. svn path=/trunk/; revision=45211 --- reactos/lib/sdk/crt/math/i386/aulldvrm_asm.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/math/i386/aulldvrm_asm.s b/reactos/lib/sdk/crt/math/i386/aulldvrm_asm.s index da866459ef2..6f7de08f2b2 100644 --- a/reactos/lib/sdk/crt/math/i386/aulldvrm_asm.s +++ b/reactos/lib/sdk/crt/math/i386/aulldvrm_asm.s @@ -89,7 +89,7 @@ __aulldvrm: #undef DVSRLO #undef DVSRHI #define DVNDLO [esp + 8] // stack address of dividend (a) -#define DVNDHI [esp + 8] // stack address of dividend (a) +#define DVNDHI [esp + 12] // stack address of dividend (a) #define DVSRLO [esp + 16] // stack address of divisor (b) #define DVSRHI [esp + 20] // stack address of divisor (b) -- 2.17.1