PowerPC's va_list, at least, is a typedef for an array, which means it
decays to a pointer in parameter position. Since the decayed type is
built from the array element type, the typedef sugar is lost.
More rdar://problem/
25846421.
llvm-svn: 286533
}
auto isVaList = [&S](QualType T) -> bool {
+ // Handle array va_list parameters that decayed to pointers.
+ if (auto *decayedTy = T->getAs<DecayedType>())
+ T = decayedTy->getOriginalType();
+
auto *typedefTy = T->getAs<TypedefType>();
if (!typedefTy)
return false;