blob: 52b540b2bdd063f8f03c980329fa991fb1312809 [file] [log] [blame]
Saleem Abdulrasool905b6d192014-04-03 23:47:24 +00001; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2,+v7 %s -o - | FileCheck %s
David Goodwinaa294c52009-06-26 20:47:43 +00002
3define i32 @f1(i32 %a) {
Stephen Lind24ab202013-07-14 06:24:09 +00004; CHECK-LABEL: f1:
Bob Wilson3d43b382009-10-27 06:31:02 +00005; CHECK: clz r
Chandler Carruth6b0e34c2011-12-12 11:59:10 +00006 %tmp = tail call i32 @llvm.ctlz.i32(i32 %a, i1 true)
David Goodwinaa294c52009-06-26 20:47:43 +00007 ret i32 %tmp
8}
9
Chandler Carruth6b0e34c2011-12-12 11:59:10 +000010declare i32 @llvm.ctlz.i32(i32, i1) nounwind readnone