diff options
Diffstat (limited to 'compiler-rt/lib/popcountsi2.c')
-rw-r--r-- | compiler-rt/lib/popcountsi2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/popcountsi2.c b/compiler-rt/lib/popcountsi2.c index e425b0b8638..bfaa3fff2ee 100644 --- a/compiler-rt/lib/popcountsi2.c +++ b/compiler-rt/lib/popcountsi2.c @@ -11,12 +11,13 @@ * * ===----------------------------------------------------------------------=== */ +#include "abi.h" #include "int_lib.h" /* Returns: count of 1 bits */ -si_int +COMPILER_RT_ABI si_int __popcountsi2(si_int a) { su_int x = (su_int)a; |