blob: cdde95a687d03d9a0e3d09527bbdc16baba689d4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v5t | grep clz
2
3declare uint %llvm.ctlz.i32(uint)
4
5uint %test(uint %x) {
6 %tmp.1 = call uint %llvm.ctlz.i32( uint %x )
7 ret uint %tmp.1
8}