Skip to content

Commit 386dec2

Browse files
authored
Update ReleaseNotes.md
Mentioned native command definitions and support for breaking on inlined call-sites.
1 parent a8d2aee commit 386dec2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

llvm/docs/ReleaseNotes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,13 @@ Changes to LLDB
415415

416416
* LLDB now parses shared libraries in parallel, resulting in an average 2x speedup when attaching (only available on Darwin platforms) and launching (available on all platforms).
417417

418+
* It is now possible to implement lldb commands in Python that use lldb's native command-line parser. In particular, that allows per-option/argument completion,
419+
with all the basic completers automatically supported and auto-generated help.
420+
The command template file in the lldb/examples/python/cmdtemplate.py has been updated to show how to use this.
421+
422+
* Breakpoints on "inlined call sites" are now supported. Previous to this fix, breakpoints on source lines that only contained inlined call sites would be
423+
moved to the next source line, causing you to miss the inlined executions.
424+
418425
* On the command line, LLDB now limits tab completions to your terminal width to avoid wrapping.
419426

420427
Old:

0 commit comments

Comments
 (0)