From: Rich Felker Date: Sat, 15 Sep 2012 03:52:51 +0000 (-0400) Subject: workaround gcc got-register-reload performance problems in malloc X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=afd209deb7d3bfc9cc31713e2cb8f22693ca6fae;hp=afd209deb7d3bfc9cc31713e2cb8f22693ca6fae workaround gcc got-register-reload performance problems in malloc with this patch, the malloc in libc.so built with -Os is nearly the same speed as the one built with -O3. thus it solves the performance regression that resulted from removing the forced -O3 when building libc.so; now libc.so can be both small and fast. ---