diff options
Diffstat (limited to 'test/Sema/varargs-x86-64.c')
-rw-r--r-- | test/Sema/varargs-x86-64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/varargs-x86-64.c b/test/Sema/varargs-x86-64.c index 2cfedc1..2fe9b10 100644 --- a/test/Sema/varargs-x86-64.c +++ b/test/Sema/varargs-x86-64.c @@ -3,6 +3,6 @@ // rdar://6726818 void f1() { const __builtin_va_list args2; - (void)__builtin_va_arg(args2, int); // expected-error {{first argument to 'va_arg' is of type '__builtin_va_list const' and not 'va_list'}} + (void)__builtin_va_arg(args2, int); // expected-error {{first argument to 'va_arg' is of type 'const __builtin_va_list' and not 'va_list'}} } |