balazske added a comment.

`ASTImporterLookupTable` do not contain an entry for `__va_list_tag`, I do not 
know why it is missing. If it is added "manually" the crash disappears. 
Following code was used to add VaListTagDecl:

  ASTImporterLookupTable::ASTImporterLookupTable(TranslationUnitDecl &TU) {
    Builder B(*this);
    B.TraverseDecl(&TU);
    // Add __va_list_tag to the table, it is not visited by the builder.
    if (NamedDecl *D = 
dyn_cast_or_null<NamedDecl>(TU.getASTContext().getVaListTagDecl()))
      add(&TU, D);
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136886/new/

https://reviews.llvm.org/D136886

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to