Igor Kudrin
e4c0f30030
[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 .
2025-07-30 12:54:15 -07:00
..
2023-05-25 12:54:09 -07:00
2025-06-13 10:02:41 -07:00
2025-05-27 18:41:16 -07:00
2024-07-25 20:25:40 +02:00
2024-04-25 16:42:33 -07:00
2025-07-30 18:01:04 +01:00
2024-08-06 11:06:04 -07:00
2025-05-27 18:41:16 -07:00
2025-07-30 12:54:15 -07:00
2025-05-27 18:41:16 -07:00
2025-07-18 16:27:46 +01:00
2025-07-28 16:40:00 +01:00
2023-05-25 12:54:09 -07:00
2024-11-11 08:11:03 -08:00
2025-07-08 16:21:45 -07:00
2025-07-23 08:52:49 +01:00
2023-05-25 12:54:09 -07:00
2025-05-27 18:41:16 -07:00
2025-06-30 16:27:44 +03:00
2023-05-25 12:54:09 -07:00
2024-02-19 19:54:53 -08:00
2025-03-21 09:02:27 -07:00
2024-11-24 19:02:47 -08:00
2025-06-18 13:06:20 -07:00
2023-05-25 12:54:09 -07:00
2024-06-28 20:08:53 +01:00
2025-07-22 12:43:08 +01:00
2025-02-28 14:59:35 +00:00
2025-05-27 13:16:03 -07:00
2025-05-19 11:13:49 -07:00
2023-05-25 12:54:09 -07:00
2023-05-25 12:54:09 -07:00
2025-07-17 11:12:29 -07:00
2025-07-17 11:12:29 -07:00
2024-11-11 08:11:03 -08:00
2023-10-31 17:08:55 -03:00