[Object/ELF] Provide helpers for symbol types.
[oota-llvm.git] / test / Verifier / inalloca-vararg.ll
old mode 100755 (executable)
new mode 100644 (file)
index 5099fd1..428f89e
@@ -3,7 +3,7 @@
 declare void @h(i32, ...)
 define void @i() {
   %args = alloca inalloca i32
-  call void (i32, ...)* @h(i32 1, i32* inalloca %args, i32 3)
+  call void (i32, ...) @h(i32 1, i32* inalloca %args, i32 3)
 ; CHECK: inalloca isn't on the last argument!
   ret void
 }