summaryrefslogtreecommitdiff
path: root/gcc/ChangeLog
diff options
context:
space:
mode:
authorPatrick O'Neill <patrick@rivosinc.com>2023-04-28 16:40:27 -0700
committerPatrick O'Neill <patrick@rivosinc.com>2023-05-02 09:21:51 -0700
commit9cfdd5af3efd4a7e52ae7f97f55effc436c0cf45 (patch)
tree69b4adb070dceadc1a665fcac5c4864847fc08f0 /gcc/ChangeLog
parent1adb1a653d6739589b12337c974c7e741cfb187c (diff)
downloadgcc-9cfdd5af3efd4a7e52ae7f97f55effc436c0cf45.tar.gz
RISC-V: Name newly added flags in changelog
This patch fixes the changelog to explicitly name the added command line flags introduced in this patch: https://gcc.gnu.org/pipermail/gcc-patches/2023-April/616807.html 2023-05-01 Patrick O'Neill <patrick@rivosinc.com> Signed-off-by: Patrick O'Neill <patrick@rivosinc.com>
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r--gcc/ChangeLog6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9862f22a941..2667865e51c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -901,10 +901,12 @@
PR target/104338
* config/riscv/riscv-protos.h: Add helper function stubs.
* config/riscv/riscv.cc: Add helper functions for subword masking.
- * config/riscv/riscv.opt: Add command-line flag.
+ * config/riscv/riscv.opt: Add command-line flags -minline-atomics and
+ -mno-inline-atomics.
* config/riscv/sync.md: Add masking logic and inline asm for fetch_and_op,
fetch_and_nand, CAS, and exchange ops.
- * doc/invoke.texi: Add blurb regarding command-line flag.
+ * doc/invoke.texi: Add blurb regarding new command-line flags
+ -minline-atomics and -mno-inline-atomics.
2023-04-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>