aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/builtins-arm.cpp
blob: 8a0cf8102b35e996f194eda25e4cf69828807fcf (plain) (blame)
1
2
3
4
5
6
// 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 of reference to type '__builtin_va_list' to a value of type 'const __builtin_va_list' drops qualifiers}}
}