brintos

brintos / llvm-project-archived public Read only

0
0
Text · 323 B · e68e99d Raw
7 lines · cpp
1// RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify %s2 3// va_list on ARM AAPCS is struct { void* __ap }.4int test1(const __builtin_va_list &ap) {5  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}}6}7