diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2014-03-01 15:30:50 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2014-03-01 15:30:50 +0000 |
commit | bfbb8bbc8e4a4fce3538aa85b095543fee291df7 (patch) | |
tree | 66760b0732edf7228f5920aa69b9a105d7913afe /lib/builtins/mulodi4.c | |
parent | 8467eeb64062221a2b8d36629f907d072336d989 (diff) | |
download | compiler-rt-bfbb8bbc8e4a4fce3538aa85b095543fee291df7.tar.gz |
Consistently use COMPILER_RT_ABI for all public symbols.
Move prototypes into headers and fix a few inconsistencies.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@202591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/builtins/mulodi4.c')
-rw-r--r-- | lib/builtins/mulodi4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/mulodi4.c b/lib/builtins/mulodi4.c index 0c1b5cdae..d2fd7db2b 100644 --- a/lib/builtins/mulodi4.c +++ b/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); |