[RuntimeDyld] Add support for MachO x86_64 SUBTRACTOR relocation.
[oota-llvm.git] / test / Verifier / inalloca-vararg.ll
old mode 100755 (executable)
new mode 100644 (file)
index 6729c42..428f89e
@@ -2,8 +2,8 @@
 
 declare void @h(i32, ...)
 define void @i() {
-  %args = alloca i32
-  call void (i32, ...)* @h(i32 1, i32* inalloca %args, i32 3)
+  %args = alloca inalloca i32
+  call void (i32, ...) @h(i32 1, i32* inalloca %args, i32 3)
 ; CHECK: inalloca isn't on the last argument!
   ret void
 }