-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Revert "[lldb] Fix the way we set up the lldb modules infrastructure." #66271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This reverts commit c95a0c9. llvm#65683 split `-fincremental-extensions` and `IncrementalProcessing` such that `IncrementalProcessing` can be used to extend the lifetime of various datastructures without parsing changes. LLDB really should not be parsing any differently to a regular compile, so switch back to using just `IncrementalProcessing`.
@llvm/pr-subscribers-lldb ChangesThis reverts commit c95a0c9.#65683 split
|
2f65db8
to
88cf0b4
Compare
Sorry about the noise here. I accidentally pushed over the same branch name. |
This is currently enabled during module loading, where we definitely don't want any change in behavior IMO. Perhaps we could enable it after? If we think this is useful to keep I'll need to look into how #65683 broke LLDB testing:
That change should effectively be NFC as far as |
@bnbarham, I think it would be useful to keep it.
Incremental processing should also enable the llvm expression parser workflows. The advantage is that now we can write tests against
If you can provide links to the failing tests I can take a look. |
https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/60022/ |
Does that PR fix the tests you mentioned? |
Sorry, which PR? #66281 is a revert of #65683 which caused the failures to begin with. The only non-NFC part of that PR is https://github.com/llvm/llvm-project/pull/65683/files#diff-5c51bae1966e0b475927bfa75751eb83db5d90f828aa825cb24f40dea653c408R714-R715. If I remove the if there, these tests start passing too. IIRC not having that change caused failures elsewhere... Checking that now. |
Everything seems to work fine without it, so I'll put up that PR again without that check and close this PR. |
This reverts commit c95a0c9.
#65683 split
-fincremental-extensions
andIncrementalProcessing
such thatIncrementalProcessing
can be used to extend the lifetime of various datastructures without parsing changes. LLDB really should not be parsing any differently to a regular compile, so switch back to using justIncrementalProcessing
.