Message ID | 20230818103425.16271-3-philmd@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | target/loongarch: Cleanups in preparation of loongarch32 support | expand |
On 8/18/23 03:34, Philippe Mathieu-Daudé wrote: > Commit 228021f05e ("target/loongarch: Add core definition") sets > disas_set_info to loongarch_cpu_disas_set_info. Probably due to > a failed git-rebase, commit ca61e75071 ("target/loongarch: Add gdb > support") also sets it to the same value. Remove the duplication. > > Signed-off-by: Philippe Mathieu-Daudé<philmd@linaro.org> > --- > target/loongarch/cpu.c | 1 - > 1 file changed, 1 deletion(-) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c index 7107968699..dc617be36f 100644 --- a/target/loongarch/cpu.c +++ b/target/loongarch/cpu.c @@ -723,7 +723,6 @@ static void loongarch_cpu_class_init(ObjectClass *c, void *data) cc->disas_set_info = loongarch_cpu_disas_set_info; cc->gdb_read_register = loongarch_cpu_gdb_read_register; cc->gdb_write_register = loongarch_cpu_gdb_write_register; - cc->disas_set_info = loongarch_cpu_disas_set_info; cc->gdb_num_core_regs = 35; cc->gdb_core_xml_file = "loongarch-base64.xml"; cc->gdb_stop_before_watchpoint = true;
Commit 228021f05e ("target/loongarch: Add core definition") sets disas_set_info to loongarch_cpu_disas_set_info. Probably due to a failed git-rebase, commit ca61e75071 ("target/loongarch: Add gdb support") also sets it to the same value. Remove the duplication. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- target/loongarch/cpu.c | 1 - 1 file changed, 1 deletion(-)