https://bugs.llvm.org/show_bug.cgi?id=43918
Bug ID: 43918
Summary: Debugserver doesn't continue with specified signal in
`vCont` packet
Product: lldb
Version: unspecified
Hardware: PC
OS: Linux
S
Hello,
I noticed that the AST importer is very eager to import classes/structs
that were already completed, even if they are not needed. This is best
illustrated with an example.
struct C0 { int x = 0; };
struct C1 { int x = 1; C0* c0 = 0; };
struct C2 { int x = 2; C1* c1 = 0; };
int main() {
Can you post that patch on Phabricator with an '[ASTImporter]’ as a name
prefix? This way the ASTImporter folks will see your patch (The ASTImporter is
more of a Clang thing, so they might not read lldb-dev). Also it makes it
easier to see/test your patch :)
(And +Gabor just in case)
> On Nov