public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] internal-fn: Fix bug of BIAS argument index
@ 2023-06-26 20:57 Jeff Law
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Law @ 2023-06-26 20:57 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:791b0a21d72716559dbb9e82ff8a860705517e65

commit 791b0a21d72716559dbb9e82ff8a860705517e65
Author: Ju-Zhe Zhong <juzhe.zhong@rivai.ai>
Date:   Sun Jun 25 11:36:54 2023 +0800

    internal-fn: Fix bug of BIAS argument index
    
    When trying to enable LEN_MASK_{LOAD,STORE} in RISC-V port,
    I found I made a mistake in case of argument index of BIAS.
    
    This patch is an obvious fix.
    
    gcc/ChangeLog:
    
            * internal-fn.cc (expand_partial_store_optab_fn): Fix bug of BIAS
            argument index.

Diff:
---
 gcc/internal-fn.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/internal-fn.cc b/gcc/internal-fn.cc
index 0458d568f59..c44232c1e4b 100644
--- a/gcc/internal-fn.cc
+++ b/gcc/internal-fn.cc
@@ -2898,7 +2898,7 @@ expand_partial_store_optab_fn (internal_fn ifn, gcall *stmt, convert_optab optab
       maskt = gimple_call_arg (stmt, 3);
       mask = expand_normal (maskt);
       create_input_operand (&ops[3], mask, TYPE_MODE (TREE_TYPE (maskt)));
-      biast = gimple_call_arg (stmt, 4);
+      biast = gimple_call_arg (stmt, 5);
       bias = expand_normal (biast);
       create_input_operand (&ops[4], bias, QImode);
       icode = convert_optab_handler (optab, TYPE_MODE (type), GET_MODE (mask));

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] internal-fn: Fix bug of BIAS argument index
@ 2023-07-14  2:49 Jeff Law
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Law @ 2023-07-14  2:49 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:e956a1b549b0b60cceb639c43bf48108d729e776

commit e956a1b549b0b60cceb639c43bf48108d729e776
Author: Ju-Zhe Zhong <juzhe.zhong@rivai.ai>
Date:   Sun Jun 25 11:36:54 2023 +0800

    internal-fn: Fix bug of BIAS argument index
    
    When trying to enable LEN_MASK_{LOAD,STORE} in RISC-V port,
    I found I made a mistake in case of argument index of BIAS.
    
    This patch is an obvious fix.
    
    gcc/ChangeLog:
    
            * internal-fn.cc (expand_partial_store_optab_fn): Fix bug of BIAS
            argument index.

Diff:
---
 gcc/internal-fn.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/internal-fn.cc b/gcc/internal-fn.cc
index 0458d568f59..c44232c1e4b 100644
--- a/gcc/internal-fn.cc
+++ b/gcc/internal-fn.cc
@@ -2898,7 +2898,7 @@ expand_partial_store_optab_fn (internal_fn ifn, gcall *stmt, convert_optab optab
       maskt = gimple_call_arg (stmt, 3);
       mask = expand_normal (maskt);
       create_input_operand (&ops[3], mask, TYPE_MODE (TREE_TYPE (maskt)));
-      biast = gimple_call_arg (stmt, 4);
+      biast = gimple_call_arg (stmt, 5);
       bias = expand_normal (biast);
       create_input_operand (&ops[4], bias, QImode);
       icode = convert_optab_handler (optab, TYPE_MODE (type), GET_MODE (mask));

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-14  2:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-26 20:57 [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] internal-fn: Fix bug of BIAS argument index Jeff Law
2023-07-14  2:49 Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).