blob: 227e4e8aaa243d19615453068fdba143d8857047 [file] [log] [blame]
Eric Christopher2b88e8f2011-07-14 06:23:09 +00001; RUN: llc < %s -march=arm -mattr=+v7 | FileCheck %s
2
3define i32 @f(i32 %a) nounwind readnone optsize ssp {
4entry:
5 %conv = zext i32 %a to i64
6 %tmp1 = tail call i64 @llvm.ctlz.i64(i64 %conv)
7; CHECK: clz
8; CHECK-NOT: adds
9 %cast = trunc i64 %tmp1 to i32
10 %sub = sub nsw i32 63, %cast
11 ret i32 %sub
12}
13
14declare i64 @llvm.ctlz.i64(i64) nounwind readnone