1 /* ===-- modsi3.c - Implement __modsi3 -------------------------------------===
3 * The LLVM Compiler Infrastructure
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
8 * ===----------------------------------------------------------------------===
10 * This file implements __modsi3 for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
17 su_int COMPILER_RT_ABI
__divsi3(si_int a
, si_int b
);
21 COMPILER_RT_ABI si_int
22 __modsi3(si_int a
, si_int b
)
24 return a
- __divsi3(a
, b
) * b
;