Logan Chien | 2957489 | 2012-10-20 06:11:33 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify %s |
2 | |||||
3 | // va_list on ARM AAPCS is struct { void* __ap }. | ||||
4 | int test1(const __builtin_va_list &ap) { | ||||
Richard Trieu | d396763 | 2015-05-16 01:39:39 +0000 | [diff] [blame^] | 5 | return __builtin_va_arg(ap, int); // expected-error {{binding value of type 'const __builtin_va_list' to reference to type '__builtin_va_list' drops 'const' qualifier}} |
Logan Chien | 2957489 | 2012-10-20 06:11:33 +0000 | [diff] [blame] | 6 | } |