diff options
Diffstat (limited to 'compiler-rt/lib/builtins/mulodi4.c')
-rw-r--r-- | compiler-rt/lib/builtins/mulodi4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/mulodi4.c b/compiler-rt/lib/builtins/mulodi4.c index 0c1b5cdae76..d2fd7db2bcd 100644 --- a/compiler-rt/lib/builtins/mulodi4.c +++ b/compiler-rt/lib/builtins/mulodi4.c @@ -18,7 +18,7 @@ /* Effects: sets *overflow to 1 if a * b overflows */ -di_int +COMPILER_RT_ABI di_int __mulodi4(di_int a, di_int b, int* overflow) { const int N = (int)(sizeof(di_int) * CHAR_BIT); |