Re: [PATCH] target/riscv: Don't wrongly overide isa version

2021-08-11 Thread Bin Meng
On Wed, Aug 11, 2021 at 10:07 PM LIU Zhiwei wrote: > > > On 2021/8/11 下午5:26, Bin Meng wrote: > > On Tue, Aug 10, 2021 at 11:35 AM LIU Zhiwei wrote: > >> For some cpu, the isa version has already been set in cpu init function. > >> Thus only overide the isa version when isa version is not set, or

Re: [PATCH] target/riscv: Don't wrongly overide isa version

2021-08-11 Thread LIU Zhiwei
On 2021/8/11 下午5:26, Bin Meng wrote: On Tue, Aug 10, 2021 at 11:35 AM LIU Zhiwei wrote: For some cpu, the isa version has already been set in cpu init function. Thus only overide the isa version when isa version is not set, or typo: override, please fix the commit title as well OK users

Re: [PATCH] target/riscv: Don't wrongly overide isa version

2021-08-11 Thread Bin Meng
On Tue, Aug 10, 2021 at 11:35 AM LIU Zhiwei wrote: > > For some cpu, the isa version has already been set in cpu init function. > Thus only overide the isa version when isa version is not set, or typo: override, please fix the commit title as well > users set different isa version explicitly by

[PATCH] target/riscv: Don't wrongly overide isa version

2021-08-09 Thread LIU Zhiwei
For some cpu, the isa version has already been set in cpu init function. Thus only overide the isa version when isa version is not set, or users set different isa version explicitly by cpu parameters. Signed-off-by: LIU Zhiwei --- target/riscv/cpu.c | 14 -- 1 file changed, 8 inserti