diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md index e9749e591f95c..142db867b566e 100644 --- a/llvm/docs/ReleaseNotes.md +++ b/llvm/docs/ReleaseNotes.md @@ -325,6 +325,28 @@ Changes to the LLVM tools Changes to LLDB --------------------------------- +* LLDB now now supports inline diagnostics for the expression evaluator and command line parser. + + Old: + ``` + (lldb) p a+b + error: :1:1: use of undeclared identifier 'a' + 1 | a+b + | ^ + error: :1:3: use of undeclared identifier 'b' + 1 | a+b + | ^ + ``` + + New: + + ``` + (lldb) p a+b + ˄ ˄ + │ ╰─ error: use of undeclared identifier 'b' + ╰─ error: use of undeclared identifier 'a' + ``` + * LLDB can now read the `fpmr` register from AArch64 Linux processes and core files.