https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61570
--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Sure, but for this model AFAIK we go through the default: case of PENTIUMPRO
anyway, where we only test the flags, so even if it used some completely
unknown family number, it would still behave the same.
So, can't we before:
else if (has_sse3)
/* It is Core Duo. */
cpu = "pentium-m";
else if (has_sse2)
/* It is Pentium M. */
cpu = "pentium-m";
just add
else if (has_longmode)
/* Some unknown 64-bit CPU, perhaps emulator? */
cpu = "x86-64";
?
Otherwise, QEMU, if it doesn't want to support SSSE3 and SSE3, and doesn't want
to support 3dNOW either would need to identify itself as something other than
Intel and AMD.