summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/clz.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
commitf697c038834f36190d6d93353ea3b1fababe6faf (patch)
tree0d6ee48a1c954dd09ab948fd4da9acee2a1f3239 /llvm/test/CodeGen/ARM/clz.ll
parent1f6520842c2873aff772a39d53582c469b4f399d (diff)
downloadbcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.tar.gz
bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.zip
Remove llvm-upgrade.
llvm-svn: 47238
Diffstat (limited to 'llvm/test/CodeGen/ARM/clz.ll')
-rw-r--r--llvm/test/CodeGen/ARM/clz.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/ARM/clz.ll b/llvm/test/CodeGen/ARM/clz.ll
index cdde95a687d..389fb2ce1ee 100644
--- a/llvm/test/CodeGen/ARM/clz.ll
+++ b/llvm/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
}
OpenPOWER on IntegriCloud