Hi : I noticed that on mips, the signed form instruction of multiply is generated for unsigned integer multiply operation. for example, mult is used, rather than multu for following codes:
unsigned int x, y, z; x = y * z; Is it reasonable to do so? Thanks. -- Best Regards.