diff options
Diffstat (limited to 'llvm/test/CodeGen/ARM/clz.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/clz.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/clz.ll b/llvm/test/CodeGen/ARM/clz.ll new file mode 100644 index 00000000000..80b7cd8fee9 --- /dev/null +++ b/llvm/test/CodeGen/ARM/clz.ll @@ -0,0 +1,9 @@ +; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && +; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v5t | grep "clz" + +declare uint %llvm.ctlz.i32(uint) + +uint %test(uint %x) { + %tmp.1 = call uint %llvm.ctlz.i32( uint %x ) + ret uint %tmp.1 +} |