Skip to content

Commit 3e552ed

Browse files
Add release notes for LLDB inline diagnostics (#116841)
1 parent 8b2dff9 commit 3e552ed

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

llvm/docs/ReleaseNotes.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,28 @@ Changes to the LLVM tools
325325
Changes to LLDB
326326
---------------------------------
327327

328+
* LLDB now now supports inline diagnostics for the expression evaluator and command line parser.
329+
330+
Old:
331+
```
332+
(lldb) p a+b
333+
error: <user expression 0>:1:1: use of undeclared identifier 'a'
334+
1 | a+b
335+
| ^
336+
error: <user expression 0>:1:3: use of undeclared identifier 'b'
337+
1 | a+b
338+
| ^
339+
```
340+
341+
New:
342+
343+
```
344+
(lldb) p a+b
345+
˄ ˄
346+
│ ╰─ error: use of undeclared identifier 'b'
347+
╰─ error: use of undeclared identifier 'a'
348+
```
349+
328350
* LLDB can now read the `fpmr` register from AArch64 Linux processes and core
329351
files.
330352

0 commit comments

Comments
 (0)