diff options
author | Igor Kudrin <ikudrin@accesssoftek.com> | 2025-07-30 12:54:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-30 12:54:15 -0700 |
commit | e4c0f300309fbdcdabc43ff4bf57957181d6451e (patch) | |
tree | 2bd8ed253519651af834b99ab1ab23566e94c9f8 /lldb/unittests/ScriptInterpreter/Python | |
parent | a7ac43125eabb5845a2855bbf37fd4485831e860 (diff) | |
download | llvm-e4c0f300309fbdcdabc43ff4bf57957181d6451e.zip llvm-e4c0f300309fbdcdabc43ff4bf57957181d6451e.tar.gz llvm-e4c0f300309fbdcdabc43ff4bf57957181d6451e.tar.bz2 |
[lldb] Fix updating persistent variables without JIT (#149642)
This patch fixes updating persistent variables when memory cannot be
allocated in an inferior process:
```
> lldb -c test.core
(lldb) expr int $i = 5
(lldb) expr $i = 55
(int) $0 = 55
(lldb) expr $i
(int) $i = 5
```
With this patch, the last command prints:
```
(int) $i = 55
```
The issue was introduced in #145599.
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python')
0 files changed, 0 insertions, 0 deletions