Remove llvm-upgrade and update test cases.
[oota-llvm.git] / test / Transforms / DeadArgElim / 2006-06-27-struct-ret.ll
index 2a7b3a1f0421da23a71136b20380a8afc3e0aedc..0d86800c780a098e91b34c669875bf267f4d0b9a 100644 (file)
@@ -1,13 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -deadargelim -disable-output
+; RUN: llvm-as < %s | opt -deadargelim -disable-output
 
-implementation
-
-internal csretcc void %build_delaunay({int}* %agg.result) {
-       ret void
+define internal void @build_delaunay({ i32 }* sret  %agg.result) {
+        ret void
 }
 
-void %test() {
-  call csretcc void %build_delaunay({int}* null)
-  ret void
+define void @test() {
+        call void @build_delaunay( { i32 }* sret  null )
+        ret void
 }