diff options
Diffstat (limited to 'clang/test/CodeGen/arm_acle.c')
-rw-r--r-- | clang/test/CodeGen/arm_acle.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/CodeGen/arm_acle.c b/clang/test/CodeGen/arm_acle.c index 7463d0d8e1d..9f0ad22bda4 100644 --- a/clang/test/CodeGen/arm_acle.c +++ b/clang/test/CodeGen/arm_acle.c @@ -175,6 +175,24 @@ uint64_t test_clzll(uint64_t t) { return __clzll(t); } +// ARM-LABEL: test_cls +// ARM: call i32 @llvm.arm.cls(i32 %t) +unsigned test_cls(uint32_t t) { + return __cls(t); +} + +// ARM-LABEL: test_clsl +// AArch32: call i32 @llvm.arm.cls(i32 %t) +// AArch64: call i32 @llvm.arm.cls64(i64 %t) +unsigned test_clsl(unsigned long t) { + return __clsl(t); +} +// ARM-LABEL: test_clsll +// ARM: call i32 @llvm.arm.cls64(i64 %t) +unsigned test_clsll(uint64_t t) { + return __clsll(t); +} + // ARM-LABEL: test_rev // ARM: call i32 @llvm.bswap.i32(i32 %t) uint32_t test_rev(uint32_t t) { |