[ASan] Intercept CreateThread on Windows
[blocksruntime.git] / lib / modsi3.c
blobd16213c49038a5c5d2fb5d97b703c9f60b86305c
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 * ===----------------------------------------------------------------------===
15 #include "int_lib.h"
17 su_int COMPILER_RT_ABI __divsi3(si_int a, si_int b);
19 /* Returns: a % b */
21 COMPILER_RT_ABI si_int
22 __modsi3(si_int a, si_int b)
24 return a - __divsi3(a, b) * b;