2009-08-08 04:30:09 +08:00
|
|
|
/* ===-- umodsi3.c - Implement __umodsi3 -----------------------------------===
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2010-11-17 06:13:33 +08:00
|
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
* Source Licenses. See LICENSE.TXT for details.
|
2009-08-08 04:30:09 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __umodsi3 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2009-08-08 04:30:09 +08:00
|
|
|
/* Returns: a % b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-07-03 10:26:38 +08:00
|
|
|
su_int __udivsi3(su_int a, su_int b);
|
|
|
|
|
2009-06-27 00:47:03 +08:00
|
|
|
su_int
|
|
|
|
__umodsi3(su_int a, su_int b)
|
|
|
|
{
|
2009-07-03 10:26:38 +08:00
|
|
|
return a - __udivsi3(a, b) * b;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|