diff options
| author | Yi Kong <Yi.Kong@arm.com> | 2014-08-15 08:53:22 +0000 |
|---|---|---|
| committer | Yi Kong <Yi.Kong@arm.com> | 2014-08-15 08:53:22 +0000 |
| commit | 70cf4c626e25298c570d951f441522fb0d9e1783 (patch) | |
| tree | c04ffc66024f0c58b4242bcee4862fd085569bab | |
| parent | 6649f532079fd1ae98585048e546369b03c9c7a2 (diff) | |
| download | bcm5719-llvm-70cf4c626e25298c570d951f441522fb0d9e1783.tar.gz bcm5719-llvm-70cf4c626e25298c570d951f441522fb0d9e1783.zip | |
arm_acle.h: Small cleanup
Since __SIZEOF_LONG_LONG__ is always defined as 8 on ARM targets,
there's no point in checking this. NFC.
Patch by Moritz Roth.
llvm-svn: 215697
| -rw-r--r-- | clang/lib/Headers/arm_acle.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Headers/arm_acle.h b/clang/lib/Headers/arm_acle.h index 286bc20e123..110884b3b87 100644 --- a/clang/lib/Headers/arm_acle.h +++ b/clang/lib/Headers/arm_acle.h @@ -108,11 +108,7 @@ static __inline__ unsigned long __attribute__((always_inline, nodebug)) static __inline__ uint64_t __attribute__((always_inline, nodebug)) __clzll(uint64_t t) { -#if __SIZEOF_LONG_LONG__ == 8 return __builtin_clzll(t); -#else - return __builtin_clzl(t); -#endif } static __inline__ uint32_t __attribute__((always_inline, nodebug)) |

