[mips] The naming convention for private labels is ABI dependant.
[oota-llvm.git] / test / CodeGen / Generic / call-void.ll
index 64e6336b16f92fd5179ba1bf11bc7cad3d0000d1..9ed4179415930e2e941cc81787fb9acbe1c37ed6 100644 (file)
@@ -1,10 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc
+; RUN: llc < %s
 
-void %foo() {
-  ret void
+define void @foo() {
+        ret void
 }
 
-int %main() {  
-  call void ()* %foo() 
-  ret int 0
+define i32 @main() {
+        call void @foo( )
+        ret i32 0
 }
+