[ASan/Win tests] Bring back -GS- as SEH tests fail otherwise
[blocksruntime.git] / lib / builtins / modsi3.c
blob86c73ce13777283cfc6c1b51c0468ce428fa27a9
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 /* Returns: a % b */
19 COMPILER_RT_ABI si_int
20 __modsi3(si_int a, si_int b)
22 return a - __divsi3(a, b) * b;