2009-08-08 04:30:09 +08:00
|
|
|
/* ===-- modsi3.c - Implement __modsi3 -------------------------------------===
|
|
|
|
*
|
|
|
|
* 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 __modsi3 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
su_int COMPILER_RT_ABI __divsi3(si_int a, si_int b);
|
2011-03-11 06:11:46 +08:00
|
|
|
|
2009-08-08 04:30:09 +08:00
|
|
|
/* Returns: a % b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
COMPILER_RT_ABI si_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__modsi3(si_int a, si_int b)
|
|
|
|
{
|
2011-03-11 06:11:46 +08:00
|
|
|
return a - __divsi3(a, b) * b;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|