You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
323 B
7 lines
323 B
// RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify %s
|
|
|
|
// va_list on ARM AAPCS is struct { void* __ap }.
|
|
int test1(const __builtin_va_list &ap) {
|
|
return __builtin_va_arg(ap, int); // expected-error {{binding reference of type '__builtin_va_list' to value of type 'const __builtin_va_list' drops 'const' qualifier}}
|
|
}
|