]> Git Repo - qemu.git/commitdiff
target-ppc: Fix "G2leGP3" PVR
authorAndreas Färber <[email protected]>
Sun, 17 Feb 2013 23:16:00 +0000 (23:16 +0000)
committerAlexander Graf <[email protected]>
Fri, 8 Mar 2013 20:04:44 +0000 (21:04 +0100)
Unlike derived PVR constants mapped to CPU_POWERPC_G2LEgp3, the
"G2leGP3" model definition itself used the CPU_POWERPC_G2LEgp1 PVR.

Fixing this will allow to alias CPU_POWERPC_G2LEgp3-using types to
"G2leGP3".

Signed-off-by: Andreas Färber <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
target-ppc/translate_init.c

index a2e1fc9a09e6b275059b0676645d23963c51ecb0..d2706f76e8906ce99b2f685c2b5368b26264e9dd 100644 (file)
@@ -8243,7 +8243,7 @@ static const ppc_def_t ppc_defs[] = {
     /* PowerPC G2LE GP1 core                                                 */
     POWERPC_DEF("G2leGP1",       CPU_POWERPC_G2LEgp1,                G2LE),
     /* PowerPC G2LE GP3 core                                                 */
-    POWERPC_DEF("G2leGP3",       CPU_POWERPC_G2LEgp1,                G2LE),
+    POWERPC_DEF("G2leGP3",       CPU_POWERPC_G2LEgp3,                G2LE),
     /* PowerPC MPC603 microcontrollers                                       */
     /* MPC8240                                                               */
     POWERPC_DEF("MPC8240",       CPU_POWERPC_MPC8240,                603E),
This page took 0.039543 seconds and 4 git commands to generate.