From 298a3683d0cbb146bd99525ba75303ed56c897bd Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 18 Jun 2005 20:27:32 +0000 Subject: [PATCH] Fix this test case to actually test the new va_arg instruction not the old vaarg instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22256 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Feature/varargs_new.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Feature/varargs_new.ll b/test/Feature/varargs_new.ll index df6b38e0cc0..995076e1a07 100644 --- a/test/Feature/varargs_new.ll +++ b/test/Feature/varargs_new.ll @@ -19,7 +19,7 @@ int %test(int %X, ...) { call void %llvm.va_start(sbyte** %ap) ; Read a single integer argument - %tmp = vaarg sbyte** %ap, int ; [#uses=1] + %tmp = va_arg sbyte** %ap, int ; [#uses=1] ; Demonstrate usage of llvm.va_copy and llvm_va_end %apv = load sbyte** %ap ; [#uses=1]