You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[LLDB][ProcessGDBRemote] Put SetCanJIT behind a guard clause
Summary:
In D73806555, I have `SetCanJIT` be modified if the process can be resumed. This caused some test failures because the process couldn't Jit!
After some investigation, I originally tried putting this behind `CanJIT() && !non_resumable`, but that itself would modify the state of Process. So I've settled on 'if we're in a non resumable stop, now disable JIT'. This will unblock the release and I will CP back to rc-main.
Test Plan:
```
./bin/llvm-lit -sv /data/users/jalalonde/llvm-sand/external/llvm-project/lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
Testing Time: 34.21s
Total Discovered Tests: 1
Passed: 1 (100.00%)
```
Reviewers: gclayton, peix
Reviewed By: gclayton, peix
Subscribers: #lldb_team
Differential Revision: https://phabricator.intern.facebook.com/D75004779
0 commit comments