about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorWill Schmidt <will_schmidt@vnet.ibm.com>2012-04-18 15:34:23 -0500
committerRyan S. Arnold <rsa@linux.vnet.ibm.com>2012-04-18 15:34:23 -0500
commit6b652f46c3935088082bb5870b6fd9edbaa92125 (patch)
tree6813ad76813e32855c87d3ec4493cbd99058b312 /ChangeLog
parentb282631e367f474bbd9e5d92e2aa54b3ce44efe8 (diff)
downloadglibc-6b652f46c3935088082bb5870b6fd9edbaa92125.tar.gz
glibc-6b652f46c3935088082bb5870b6fd9edbaa92125.tar.xz
glibc-6b652f46c3935088082bb5870b6fd9edbaa92125.zip
Further simplify power6 wordcopy by removing switch statements.
This fix replaces switch statements that contain individual
[fwd|bwd]_align_merge (<constant>) calls with a single [fwd|bwd]_align_merge
(align) call.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cdd29819f3..e31c4dbe24 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
 
+	* sysdeps/powerpc/powerpc64/power6/wordcopy.c
+	(_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
+	fwd_align_merge macro call.
+	(_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
+	bwd_align_merge macro call.
+	* sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
+
+2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
+
 	* sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
 	bwd_align_merge macros.
 	(_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.