diff options
Diffstat (limited to 'compiler-rt/lib/builtins/modsi3.c')
-rw-r--r-- | compiler-rt/lib/builtins/modsi3.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler-rt/lib/builtins/modsi3.c b/compiler-rt/lib/builtins/modsi3.c index 16f3013f30c..ed7cac5cff1 100644 --- a/compiler-rt/lib/builtins/modsi3.c +++ b/compiler-rt/lib/builtins/modsi3.c @@ -15,8 +15,6 @@ /* Returns: a % b */ -COMPILER_RT_ABI si_int -__modsi3(si_int a, si_int b) -{ - return a - __divsi3(a, b) * b; +COMPILER_RT_ABI si_int __modsi3(si_int a, si_int b) { + return a - __divsi3(a, b) * b; } |