aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/weak.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/weak.ll')
-rw-r--r--test/CodeGen/Alpha/weak.ll17
1 files changed, 8 insertions, 9 deletions
diff --git a/test/CodeGen/Alpha/weak.ll b/test/CodeGen/Alpha/weak.ll
index aefaefd..e00e6d7 100644
--- a/test/CodeGen/Alpha/weak.ll
+++ b/test/CodeGen/Alpha/weak.ll
@@ -1,17 +1,16 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*f
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*h
+; RUN: llvm-as < %s | llc -march=alpha | grep .weak.*f
+; RUN: llvm-as < %s | llc -march=alpha | 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()
+