From 6e46de42fe1695818a410a7b86d26be8b1527524 Mon Sep 17 00:00:00 2001 From: Wilco Dijkstra Date: Fri, 24 Oct 2014 16:08:42 +0000 Subject: This patch improves strcat performance by using strlen and strcpy. Strlen has a fast C implementation, so this improves performance even on targets which don't have an optimized strlen and strcpy - it is 25% faster in bench-strcat. On targets which don't provide an optimized strcat but which do have an optimized strlen and strcpy, performance gain is > 2x. --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 98548cbaf9..f73c55e5d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-10-24 Wilco Dijkstra + + * string/strcat.c (strcat): Improve performance by using strlen/strcpy. + 2014-10-24 Wilco Dijkstra * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag): -- cgit 1.4.1