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
This commit is contained in:
Reid Spencer 2005-06-18 20:27:32 +00:00
parent 5fb7f20469
commit 298a3683d0

View File

@ -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 ; <int> [#uses=1]
%tmp = va_arg sbyte** %ap, int ; <int> [#uses=1]
; Demonstrate usage of llvm.va_copy and llvm_va_end
%apv = load sbyte** %ap ; <sbyte*> [#uses=1]