Add space to assert message.
[oota-llvm.git] / test / Transforms / IPConstantProp / deadarg.ll
index e28796acdab8b84c16e661fdf5f39cf0fdcd3141..4b9938e09e90c66476f0e2829d3f733ab122b215 100644 (file)
@@ -1,7 +1,6 @@
-; RUN: llvm-as < %s | opt -ipconstprop -disable-output
-implementation
-
-internal void %foo(int %X) {
-       call void %foo(int %X)
-       ret void
+; RUN: opt < %s -ipconstprop -disable-output
+define internal void @foo(i32 %X) {
+        call void @foo( i32 %X )
+        ret void
 }
+