OSDN Git Service

force correct ppc64 cpu
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 15 Nov 2007 15:37:50 +0000 (15:37 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 15 Nov 2007 15:37:50 +0000 (15:37 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3651 c046a42c-6fe2-441c-8c8c-71466251a162

linux-user/main.c

index bfb270b..eabb237 100644 (file)
@@ -2032,7 +2032,11 @@ int main(int argc, char **argv)
         cpu_model = "24Kf";
 #endif
 #elif defined(TARGET_PPC)
+#ifdef TARGET_PPC64
+        cpu_model = "970";
+#else
         cpu_model = "750";
+#endif
 #else
         cpu_model = "any";
 #endif