ARM-software / optimized-routines

Optimized implementations of various library functions for ARM architecture processors

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support building/testing stpcpy

pcc opened this issue · comments

commented

In http://r.android.com/1243146 @enh-google noted that the stpcpy implementation in this repository is not currently being built or tested in the optimized-routines repository (it does appear to be built/tested as part of glibc though).

It would be good to support building and testing the stpcpy in this repository given that we're starting to use it on Android.

(and if you check in a stpcpy.S that's basically #define followed by #include, that makes our build simpler :-) )

You're right, stpcpy was supported but not tested. I've now added a test and a basic stpcpy.S file.

that looks ideal. thanks!