Re: Re: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935]

2023-10-30 Thread Li Xu
t;> >> >juzhe.zh...@rivai.ai >> >> >> >> > >> >> >> >> >From: Li Xu >> >> >> >> >Date: 2023-10-24 15:29 >> >> >> >> >To: gcc-p

Re: Re: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935]

2023-10-24 Thread Kito Cheng
w). > > > > > > > > > >For GCC-13, I'd like to wait for kito's comment. > > > > > > > > > >Thanks. > > > > > > > > > > > > > > >juzhe.zh...@rivai.ai > > > > > > >

Re: Re: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935]

2023-10-24 Thread Li Xu
;Date: 2023-10-24 15:29 >To: gcc-patches >CC: kito.cheng; palmer; juzhe.zhong >Subject: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935] > >Calling vget/vset intrinsic without receiving a return value will cause >a crash. Because in this case e.target

Re: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935]

2023-10-24 Thread juzhe.zh...@rivai.ai
Ok for trunk (You can commit it to the trunk now). For GCC-13, I'd like to wait for kito's comment. Thanks. juzhe.zh...@rivai.ai From: Li Xu Date: 2023-10-24 15:29 To: gcc-patches CC: kito.cheng; palmer; juzhe.zhong Subject: [PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsi

[PATCH v2] RISC-V: Fix ICE of RVV vget/vset intrinsic[PR111935]

2023-10-24 Thread Li Xu
Calling vget/vset intrinsic without receiving a return value will cause a crash. Because in this case e.target is null. This patch should be backported to releases/gcc-13. PR/target 111935 gcc/ChangeLog: * config/riscv/riscv-vector-builtins-bases.cc: fix bug. gcc/testsuite/Chan