diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2011-04-19 17:52:09 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2011-04-19 17:52:09 +0000 |
commit | e63da933eba10f5ea5bf39af47a0ded719c2cf5d (patch) | |
tree | 3e39bc5ad29874dfa68646379425fc218b3f78aa /compiler-rt/lib/popcountsi2.c | |
parent | 75e3c1993c6d1b78cddfd93d3a936b3dcdf5cebb (diff) | |
download | bcm5719-llvm-e63da933eba10f5ea5bf39af47a0ded719c2cf5d.tar.gz bcm5719-llvm-e63da933eba10f5ea5bf39af47a0ded719c2cf5d.zip |
Move abi bits to separate header. Force AAPCS for EABI in accordance with ARM RTABI.
llvm-svn: 129769
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; |