diff options
author | Andreas Färber <afaerber@suse.de> | 2013-02-17 23:16:18 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-03-08 21:04:47 +0100 |
commit | 80c7abd3171c2939020f01d5310c3bd066ccad19 (patch) | |
tree | 11d92ac10c999b83bc402ed3ac51f80c652d5ae3 /target-ppc/translate_init.c | |
parent | 06704e9ceb85916537c8398735aa18e24ebdad86 (diff) |
target-ppc: Extract 7x5 aliases
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/translate_init.c')
-rw-r--r-- | target-ppc/translate_init.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index a97dfb73c5..5981d98d9b 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -7313,7 +7313,6 @@ enum { CPU_POWERPC_750L_v30 = 0x00088300, CPU_POWERPC_750L_v32 = 0x00088302, /* PowerPC 745/755 cores */ -#define CPU_POWERPC_7x5 CPU_POWERPC_7x5_v28 CPU_POWERPC_7x5_v10 = 0x00083100, CPU_POWERPC_7x5_v11 = 0x00083101, CPU_POWERPC_7x5_v20 = 0x00083200, @@ -8774,10 +8773,6 @@ static const ppc_def_t ppc_defs[] = { POWERPC_DEF("750l_v3.0", CPU_POWERPC_750L_v30, 750) /* PowerPC 750L v3.2 (G3 embedded) */ POWERPC_DEF("750l_v3.2", CPU_POWERPC_750L_v32, 750) - /* Generic PowerPC 745 */ - POWERPC_DEF("745", CPU_POWERPC_7x5, 745) - /* Generic PowerPC 755 */ - POWERPC_DEF("755", CPU_POWERPC_7x5, 755) /* PowerPC 745 v1.0 */ POWERPC_DEF("745_v1.0", CPU_POWERPC_7x5_v10, 745) /* PowerPC 755 v1.0 */ @@ -9120,6 +9115,8 @@ static const PowerPCCPUAlias ppc_cpu_aliases[] = { { "G3", "750" }, { "Conan/Doyle", "750p" }, { "LoneStar", "750l" }, + { "745", "745_v2.8" }, + { "755", "755_v2.8" }, { "Goldfinger", "755" }, { "7400", "7400_v2.9" }, { "Max", "7400" }, |