tsan: relax checking of errno spoiling in signal handlers
[blocksruntime.git] / lib / umodsi3.c
blobaae741d896d2132b2f2e98e7cbcc32daf8d5d6b8
1 /* ===-- umodsi3.c - Implement __umodsi3 -----------------------------------===
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 __umodsi3 for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
15 #include "int_lib.h"
17 /* Returns: a % b */
19 su_int COMPILER_RT_ABI __udivsi3(su_int a, su_int b);
21 COMPILER_RT_ABI su_int
22 __umodsi3(su_int a, su_int b)
24 return a - __udivsi3(a, b) * b;