[llvm] [WebAssembly] Format WebAssembly ReleaseNote entries (PR #122203)
Heejin Ahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 8 17:30:42 PST 2025
https://github.com/aheejin updated https://github.com/llvm/llvm-project/pull/122203
>From 7e4f914de1f3ec6a949d0ad5e9bbba53d3cc73e3 Mon Sep 17 00:00:00 2001
From: Heejin Ahn <aheejin at gmail.com>
Date: Thu, 9 Jan 2025 01:24:55 +0000
Subject: [PATCH 1/2] [WebAssembly] Format WebAssembly ReleaseNote entries
---
llvm/docs/ReleaseNotes.md | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index 159bd5cea973f8..d756ce526c5b1a 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -239,15 +239,15 @@ Changes to the RISC-V Backend
Changes to the WebAssembly Backend
----------------------------------
-The default target CPU, "generic", now enables the `-mnontrapping-fptoint`
-and `-mbulk-memory` flags, which correspond to the [Bulk Memory Operations]
-and [Non-trapping float-to-int Conversions] language features, which are
-[widely implemented in engines].
-
-A new Lime1 target CPU is added, -mcpu=lime1. This CPU follows the definition of
-the Lime1 CPU [here], and enables -mmultivalue, -mmutable-globals,
--mcall-indirect-overlong, -msign-ext, -mbulk-memory-opt, -mnontrapping-fptoint,
-and -mextended-const.
+* The default target CPU, "generic", now enables the `-mnontrapping-fptoint`
+ and `-mbulk-memory` flags, which correspond to the [Bulk Memory Operations]
+ and [Non-trapping float-to-int Conversions] language features, which are
+ [widely implemented in engines].
+
+* A new Lime1 target CPU is added, -mcpu=lime1. This CPU follows the definition
+ of the Lime1 CPU [here], and enables -mmultivalue, -mmutable-globals,
+ -mcall-indirect-overlong, -msign-ext, -mbulk-memory-opt,
+ -mnontrapping-fptoint, and -mextended-const.
[Bulk Memory Operations]: https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md
[Non-trapping float-to-int Conversions]: https://github.com/WebAssembly/spec/blob/master/proposals/nontrapping-float-to-int-conversion/Overview.md
>From 80587173e682c86028028730cb8148a78c523ed7 Mon Sep 17 00:00:00 2001
From: Heejin Ahn <aheejin at gmail.com>
Date: Thu, 9 Jan 2025 01:30:24 +0000
Subject: [PATCH 2/2] Add backticks to flag names
---
llvm/docs/ReleaseNotes.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index d756ce526c5b1a..4ea7a3ec9aa7d8 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -244,10 +244,10 @@ Changes to the WebAssembly Backend
and [Non-trapping float-to-int Conversions] language features, which are
[widely implemented in engines].
-* A new Lime1 target CPU is added, -mcpu=lime1. This CPU follows the definition
- of the Lime1 CPU [here], and enables -mmultivalue, -mmutable-globals,
- -mcall-indirect-overlong, -msign-ext, -mbulk-memory-opt,
- -mnontrapping-fptoint, and -mextended-const.
+* A new Lime1 target CPU is added, `-mcpu=lime1`. This CPU follows the
+ definition of the Lime1 CPU [here], and enables `-mmultivalue`,
+ `-mmutable-globals`, `-mcall-indirect-overlong`, `-msign-ext`,
+ `-mbulk-memory-opt`, `-mnontrapping-fptoint`, and `-mextended-const`.
[Bulk Memory Operations]: https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md
[Non-trapping float-to-int Conversions]: https://github.com/WebAssembly/spec/blob/master/proposals/nontrapping-float-to-int-conversion/Overview.md
More information about the llvm-commits
mailing list