From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf1-x443.google.com (mail-pf1-x443.google.com [IPv6:2607:f8b0:4864:20::443]) by sourceware.org (Postfix) with ESMTPS id 48C853858D28 for ; Mon, 1 May 2023 16:10:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 48C853858D28 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=rivosinc.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=rivosinc.com Received: by mail-pf1-x443.google.com with SMTP id d2e1a72fcca58-64115eef620so27736358b3a.1 for ; Mon, 01 May 2023 09:10:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rivosinc-com.20221208.gappssmtp.com; s=20221208; t=1682957441; x=1685549441; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=PaoUDJM+/hhQesB5+koQOoSNOOoj9XBVSGyq6s7Arag=; b=jzS0InK5WxLMEEQEbgrN0UmmEyvBPQjqc630IY+D4ehAoLUVY4evVEPAm6wljwg4Mu v187/e7ofKFS83i1Z3xf6obwWV6m5Am2oprBaKe52rEWcIV/4+RHrpu9HSN5SmVRcMhB XxkvJClslJBy50MyIgIzUnomFxbXpO+Alw5KwQaVc1CuwopxCT/dI9u54LNryvCb75hk 66Jhaf1ogBNex3HBsmeklgdj963OZm8q2EF3pYxI4zNpETGYqhmTFn/4qyeVcCJV06TO Qmz5Uc7hVlVj1cwggJsaufQKyh7/fTNAKEw55syQU7683CntV6eC/tTBSUvrJigwSKDe RDVw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1682957441; x=1685549441; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=PaoUDJM+/hhQesB5+koQOoSNOOoj9XBVSGyq6s7Arag=; b=J8EXKT+ygPH8bZ/wkhNeoAfd+JBpC1VnoRbQg46/GAIZU8VCKl3CGtn0Jkfk5nXY0k Oxdegs8hqsRG70KcKxhzvBzTsjxhgMHuBhZidIUWVKi9yx1u29rLVt+P//VRQUh3etWc 23KzM6WRnkkNiJeKXxH1kWHpabS9qyeu/mW4OmFjPS4tuPa9Yv2X7KEcesDm9dFO4cjk x4gYfFBMLp6XMI5E26xgEFyCCYkLF0gcpLlus0W2Z+novOXcusgZn/nY92Gjof4r2vWo b2tit+2g7VK8UfrC76gCOJGOmzICI2wdmM8E0WpDx6/2DMp6QeUAOinYTXVluhWp6WDB 2Jgg== X-Gm-Message-State: AC+VfDxDww5JL40IuxBKdQqygDJjAptavHffcjFGQdDQq1yZjefX0pv8 ZMM3J80kNM4ne2zB1CzYmCYwca/5iL08iDMWE9soIv7/k+I= X-Google-Smtp-Source: ACHHUZ4gWJdQILr9A2HVjGKoVh5iuZyGtKlGQVHnuEOuxPqYsqqIZtl9OdrktmgFivbaqlFrfbNlrw== X-Received: by 2002:a17:902:e5c5:b0:1a9:a87d:be1 with SMTP id u5-20020a170902e5c500b001a9a87d0be1mr20047387plf.34.1682957440990; Mon, 01 May 2023 09:10:40 -0700 (PDT) Received: from patrick-ThinkPad-X1-Carbon-Gen-8.hq.rivosinc.com ([50.221.140.188]) by smtp.gmail.com with ESMTPSA id e27-20020a630f1b000000b00502e7115cbdsm9355105pgl.51.2023.05.01.09.10.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 May 2023 09:10:40 -0700 (PDT) From: Patrick O'Neill To: gcc-patches@gcc.gnu.org Cc: gnu-toolchain@rivosinc.com, jeffreyalaw@gmail.com, palmer@rivosinc.com, rep.dot.nop@gmail.com, Patrick O'Neill Subject: [PATCH] RISC-V: Name newly added flags in changelog Date: Mon, 1 May 2023 09:10:37 -0700 Message-Id: <20230501161037.614414-1-patrick@rivosinc.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,GIT_PATCH_0,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: 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 gcc/ChangeLog: * ChangeLog: Name the flags added by the patch in the changelog. Signed-off-by: Patrick O'Neill --- gcc/ChangeLog | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fe8f624343c..7eb2b43c98c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -109,10 +109,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 -- 2.34.1