浏览代码

Assert that division result is correct

tags/v0.9.3
Michael Brown 18 年前
父节点
当前提交
406b20a64d
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3
    0
      src/arch/i386/core/udivmod64.c

+ 3
- 0
src/arch/i386/core/udivmod64.c 查看文件

@@ -303,6 +303,9 @@ UDItype __udivmoddi4 ( UDItype x, UDItype d, UDItype *r ) {
303 303
 
304 304
 	udivmod64 ( ( struct uint64 * ) _x, ( struct uint64 * ) _d,
305 305
 		    ( struct uint64 * ) _q, ( struct uint64 * ) _r );
306
+
307
+	assert ( ( x == ( ( d * q ) + (*r) ) ) );
308
+
306 309
 	return q;
307 310
 }
308 311
 

正在加载...
取消
保存