From b5729957c104c96a6d7bd8dd1eb0c02cf7c3db38 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 12 Oct 2015 21:19:30 +0000 Subject: [PATCH] test: change argument This failed on AArch64 due to the type mismatch using int instead of __builtin_va_list. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250112 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Inputs/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/Inputs/stdio.h b/test/CodeGen/Inputs/stdio.h index cfe359597b..fc49fd8247 100644 --- a/test/CodeGen/Inputs/stdio.h +++ b/test/CodeGen/Inputs/stdio.h @@ -5,5 +5,5 @@ extern int vprintf(const char *format, __builtin_va_list arg); extern __inline __attribute__((gnu_inline,always_inline)) int vprintf(const char *x, __builtin_va_list y) { - return vfprintf (0, 0, 0); + return vfprintf (0, 0, y); } -- 2.40.0