diff options
author | Michael B. Brutman <brutman@us.ibm.com> | 2010-10-24 21:47:33 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-10-24 21:47:33 -0400 |
commit | d0b9e94faf18f2585e7d0ae0b10daefb12f93059 (patch) | |
tree | 2e2425857acc7838a069761bf11b4b36d2d120b2 /sysdeps/powerpc/dl-procinfo.c | |
parent | 8e9f92e9d5d7737afdacf79b76d98c4c42980508 (diff) | |
download | glibc-d0b9e94faf18f2585e7d0ae0b10daefb12f93059.tar.gz glibc-d0b9e94faf18f2585e7d0ae0b10daefb12f93059.tar.xz glibc-d0b9e94faf18f2585e7d0ae0b10daefb12f93059.zip |
powerpc: PPCA2/A2 optimized memcpy function
Diffstat (limited to 'sysdeps/powerpc/dl-procinfo.c')
-rw-r--r-- | sysdeps/powerpc/dl-procinfo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/powerpc/dl-procinfo.c b/sysdeps/powerpc/dl-procinfo.c index 1c74c2a905..2ca76d8b70 100644 --- a/sysdeps/powerpc/dl-procinfo.c +++ b/sysdeps/powerpc/dl-procinfo.c @@ -68,7 +68,7 @@ PROCINFO_CLASS const char _dl_powerpc_cap_flags[25][10] #if !defined PROCINFO_DECL && defined SHARED ._dl_powerpc_platforms #else -PROCINFO_CLASS const char _dl_powerpc_platforms[8][12] +PROCINFO_CLASS const char _dl_powerpc_platforms[9][12] #endif #ifndef PROCINFO_DECL = { @@ -79,7 +79,8 @@ PROCINFO_CLASS const char _dl_powerpc_platforms[8][12] [PPC_PLATFORM_POWER6] = "power6", [PPC_PLATFORM_CELL_BE] = "ppc-cell-be", [PPC_PLATFORM_POWER6X] = "power6x", - [PPC_PLATFORM_POWER7] = "power7" + [PPC_PLATFORM_POWER7] = "power7", + [PPC_PLATFORM_PPCA2] = "ppca2" } #endif #if !defined SHARED || defined PROCINFO_DECL |