diff options
author | Elliott Hughes <enh@google.com> | 2013-10-24 16:29:40 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-10-24 16:29:40 -0700 |
commit | bf425680e484486803bf21e4c4cd1e3f36614a3c (patch) | |
tree | e98aae6ddd8758482b81ff2734ee21ad3db3885c /libc/arch-x86/x86.mk | |
parent | f8dfb6f249da6fc9c91cc8b94fa28c19e598faa6 (diff) | |
download | bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.zip bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.tar.gz bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.tar.bz2 |
Let the compiler worry about implementing ffs(3).
It does at least as good a job as our old hand-written assembly anyway.
Change-Id: If7c4a1ac508bace0b71ee7b67808caa6eabf11d2
Diffstat (limited to 'libc/arch-x86/x86.mk')
-rw-r--r-- | libc/arch-x86/x86.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libc/arch-x86/x86.mk b/libc/arch-x86/x86.mk index 4a63f5e..5911ad9 100644 --- a/libc/arch-x86/x86.mk +++ b/libc/arch-x86/x86.mk @@ -9,7 +9,6 @@ _LIBC_ARCH_COMMON_SRC_FILES := \ arch-x86/bionic/sigsetjmp.S \ arch-x86/bionic/syscall.S \ arch-x86/bionic/vfork.S \ - arch-x86/string/ffs.S ifeq ($(ARCH_X86_HAVE_SSSE3),true) _LIBC_ARCH_COMMON_SRC_FILES += \ |