mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:56:42 +00:00

Improved wording and also simplified by using printing method from qualifiers. Differential Revision: https://reviews.llvm.org/D62914 llvm-svn: 364023
7 lines
323 B
C++
7 lines
323 B
C++
// 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}}
|
|
}
|