summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/weak.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/weak.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/weak.ll')
-rw-r--r--llvm/test/CodeGen/ARM/weak.ll17
1 files changed, 8 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/ARM/weak.ll b/llvm/test/CodeGen/ARM/weak.ll
index f1294d82951..dadd1b97679 100644
--- a/llvm/test/CodeGen/ARM/weak.ll
+++ b/llvm/test/CodeGen/ARM/weak.ll
@@ -1,17 +1,16 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep .weak.*f
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep .weak.*h
+; RUN: llvm-as < %s | llc -march=arm | grep .weak.*f
+; RUN: llvm-as < %s | llc -march=arm | grep .weak.*h
-implementation ; Functions:
-
-weak uint %f() {
+define weak i32 @f() {
entry:
- unreachable
+ unreachable
}
-void %g() {
+define void @g() {
entry:
- tail call void %h( )
+ tail call void @h( )
ret void
}
-declare extern_weak void %h()
+declare extern_weak void @h()
+
OpenPOWER on IntegriCloud