diff options
Diffstat (limited to 'test/CodeGen/ARM/clz.ll')
-rw-r--r-- | test/CodeGen/ARM/clz.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/ARM/clz.ll b/test/CodeGen/ARM/clz.ll index cdde95a687..389fb2ce1e 100644 --- a/test/CodeGen/ARM/clz.ll +++ b/test/CodeGen/ARM/clz.ll @@ -1,8 +1,8 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v5t | grep clz +; RUN: llvm-as < %s | llc -march=arm -mattr=+v5t | grep clz -declare uint %llvm.ctlz.i32(uint) +declare i32 @llvm.ctlz.i32(i32) -uint %test(uint %x) { - %tmp.1 = call uint %llvm.ctlz.i32( uint %x ) - ret uint %tmp.1 +define i32 @test(i32 %x) { + %tmp.1 = call i32 @llvm.ctlz.i32( i32 %x ) ; <i32> [#uses=1] + ret i32 %tmp.1 } |