This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG41adc09b2211: [clang][AST] Add support for DecompositionDecl
to ASTImporter. (authored by balazske).
Repository:
rG LLVM Github Monorepo
CHANGES
martong accepted this revision.
martong added inline comments.
This revision is now accepted and ready to land.
Comment at: clang/lib/AST/ASTImporter.cpp:2305-2309
+ BindingDecl *ToD;
+ if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, Loc,
+
balazske added inline comments.
Comment at: clang/lib/AST/ASTImporter.cpp:2305-2309
+ BindingDecl *ToD;
+ if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, Loc,
+ Name.getAsIdentifierInfo()))
+return ToD;
+
shafik
shafik added inline comments.
Comment at: clang/lib/AST/ASTImporter.cpp:2305-2309
+ BindingDecl *ToD;
+ if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, Loc,
+ Name.getAsIdentifierInfo()))
+return ToD;
+
martong
martong added inline comments.
Comment at: clang/lib/AST/ASTImporter.cpp:2305-2309
+ BindingDecl *ToD;
+ if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, Loc,
+ Name.getAsIdentifierInfo()))
+return ToD;
+
So, we
balazske created this revision.
Herald added subscribers: whisperity, martong, teemperor, gamesh411, Szelethus,
dkrupp.
Herald added a reviewer: a.sidorin.
Herald added a reviewer: shafik.
balazske requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-com