Re: [PATCH v2 2/8] target/loongarch: Remove duplicated disas_set_info assignment

2023-08-19 Thread gaosong
在 2023/8/19 上午1:20, Philippe Mathieu-Daudé 写道: 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 d

[PATCH v2 2/8] target/loongarch: Remove duplicated disas_set_info assignment

2023-08-18 Thread Philippe Mathieu-Daudé
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