Re: [PATCH v3 0/24] Convert nanoMIPS disassembler from C++ to C

2022-10-27 Thread Philippe Mathieu-Daudé
On 27/10/22 09:25, Thomas Huth wrote: On 12/09/2022 14.26, Milica Lazarevic wrote: Hi, This patchset converts the nanomips disassembler to plain C. C++ features like class, std::string type, exception handling, and function overloading have been removed and replaced with the equivalent C

Re: [PATCH v3 0/24] Convert nanoMIPS disassembler from C++ to C

2022-10-27 Thread Thomas Huth
On 12/09/2022 14.26, Milica Lazarevic wrote: Hi, This patchset converts the nanomips disassembler to plain C. C++ features like class, std::string type, exception handling, and function overloading have been removed and replaced with the equivalent C code. Hi Philippe, hi Stefan, as far as

[PATCH v3 0/24] Convert nanoMIPS disassembler from C++ to C

2022-09-12 Thread Milica Lazarevic
Hi, This patchset converts the nanomips disassembler to plain C. C++ features like class, std::string type, exception handling, and function overloading have been removed and replaced with the equivalent C code. === Changes since previous version: (3) disas/nanomips: Delete NMD class