diff options
author | Carlos Eduardo Seo <cseo@linux.vnet.ibm.com> | 2015-11-04 19:30:49 -0200 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com> | 2015-12-22 14:45:55 -0200 |
commit | b1f19b8ef1003f202424ca222003a18b880bf914 (patch) | |
tree | dbcfc830cc9e0eab1147930e907da6f4f0380dc8 /sysdeps/powerpc/dl-procinfo.c | |
parent | 2cf3e1aa7477b813ca3ebb901003a7d44f970218 (diff) | |
download | glibc-b1f19b8ef1003f202424ca222003a18b880bf914.tar.gz glibc-b1f19b8ef1003f202424ca222003a18b880bf914.tar.xz glibc-b1f19b8ef1003f202424ca222003a18b880bf914.zip |
powerpc: Add basic support for POWER9 sans hwcap.
This patch adds the minimum changes for supporting the POWER9 processor.
Diffstat (limited to 'sysdeps/powerpc/dl-procinfo.c')
-rw-r--r-- | sysdeps/powerpc/dl-procinfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/dl-procinfo.c b/sysdeps/powerpc/dl-procinfo.c index 770c1f3465..a8df5b8192 100644 --- a/sysdeps/powerpc/dl-procinfo.c +++ b/sysdeps/powerpc/dl-procinfo.c @@ -75,7 +75,7 @@ PROCINFO_CLASS const char _dl_powerpc_cap_flags[60][10] #if !defined PROCINFO_DECL && defined SHARED ._dl_powerpc_platforms #else -PROCINFO_CLASS const char _dl_powerpc_platforms[14][12] +PROCINFO_CLASS const char _dl_powerpc_platforms[15][12] #endif #ifndef PROCINFO_DECL = { @@ -93,6 +93,7 @@ PROCINFO_CLASS const char _dl_powerpc_platforms[14][12] [PPC_PLATFORM_PPC464] = "ppc464", [PPC_PLATFORM_PPC476] = "ppc476", [PPC_PLATFORM_POWER8] = "power8", + [PPC_PLATFORM_POWER9] = "power9" } #endif #if !defined SHARED || defined PROCINFO_DECL |