[IndVarSimplify] Partially revert r217953 to see if this fixes the bots.
[oota-llvm.git] / test / Transforms / DeadArgElim / 2006-06-27-struct-ret.ll
index 80bbce0c054ad4c41f0081349c32b29777cb30f7..fac6dd24efb1f26b4ab53639f85b5e062b96aec5 100644 (file)
@@ -1,13 +1,11 @@
-; RUN: llvm-as < %s | opt -deadargelim -disable-output
+; RUN: opt < %s -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
 }