diff options
Diffstat (limited to 'llvm/docs/ReleaseNotes.md')
-rw-r--r-- | llvm/docs/ReleaseNotes.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md index 5591ac6..170e563 100644 --- a/llvm/docs/ReleaseNotes.md +++ b/llvm/docs/ReleaseNotes.md @@ -86,6 +86,8 @@ Changes to LLVM infrastructure * Added the support for ``fmaximum`` and ``fminimum`` in ``atomicrmw`` instruction. The comparison is expected to match the behavior of ``llvm.maximum.*`` and ``llvm.minimum.*`` respectively. +* Removed the codegen pass ``finalize-mi-bundles``. The same functionality is + still available as an API function ``llvm::finalizeBundles``. Changes to building LLVM ------------------------ @@ -282,6 +284,9 @@ Changes to the LLVM tools ([#47468](https://github.com/llvm/llvm-project/issues/47468)) * llvm-addr2line now supports a `+` prefix when specifying an address. * Support for `SHT_LLVM_BB_ADDR_MAP` versions 0 and 1 has been dropped. +* llvm-objdump now supports the `--debug-inlined-funcs` flag, which prints the + locations of inlined functions alongside disassembly. The + `--debug-vars-indent` flag has also been renamed to `--debug-indent`. Changes to LLDB --------------------------------- |