[PATCH] D82940: [ASTReader][ASTWriter][PCH][Modules] Fix (de)serialization of SwitchCases
Bruno Ricci via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 1 03:44:32 PDT 2020
riccibruno added a comment.
Let me take a look.
Reduced test case:
class C {} b;
void should_not_crash_with_switch_in_lambda() {
switch (1)
default:;
auto f = [] {
switch (1)
default:;
};
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82940/new/
https://reviews.llvm.org/D82940
More information about the cfe-commits
mailing list