We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b2dff9 commit 3e552edCopy full SHA for 3e552ed
llvm/docs/ReleaseNotes.md
@@ -325,6 +325,28 @@ Changes to the LLVM tools
325
Changes to LLDB
326
---------------------------------
327
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
338
339
340
341
+ New:
342
343
344
345
+ ˄ ˄
346
+ │ ╰─ error: use of undeclared identifier 'b'
347
+ ╰─ error: use of undeclared identifier 'a'
348
349
350
* LLDB can now read the `fpmr` register from AArch64 Linux processes and core
351
files.
352
0 commit comments