Re: [PATCH v2 3/5] Revert "lib/string.c: implement a basic bcmp"

2020-08-19 Thread Nathan Chancellor
On Wed, Aug 19, 2020 at 12:16:52PM -0700, Nick Desaulniers wrote: > This reverts commit 5f074f3e192f10c9fade898b9b3b8812e3d83342. > > An earlier commit in the series prevents the compiler from emitting > calls to bcmp as part of "libcall optimization," and there are no > explicit callers, so we

[PATCH v2 3/5] Revert "lib/string.c: implement a basic bcmp"

2020-08-19 Thread Nick Desaulniers
This reverts commit 5f074f3e192f10c9fade898b9b3b8812e3d83342. An earlier commit in the series prevents the compiler from emitting calls to bcmp as part of "libcall optimization," and there are no explicit callers, so we can now safely remove this interface. Suggested-by: Nathan Chancellor