From 30891f35fa7da832b66d80d0807610df361851f3 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 3 Sep 2021 22:06:44 +0530 Subject: Remove "Contributed by" lines We stopped adding "Contributed by" or similar lines in sources in 2012 in favour of git logs and keeping the Contributors section of the glibc manual up to date. Removing these lines makes the license header a bit more consistent across files and also removes the possibility of error in attribution when license blocks or files are copied across since the contributed-by lines don't actually reflect reality in those cases. Move all "Contributed by" and similar lines (Written by, Test by, etc.) into a new file CONTRIBUTED-BY to retain record of these contributions. These contributors are also mentioned in manual/contrib.texi, so we just maintain this additional record as a courtesy to the earlier developers. The following scripts were used to filter a list of files to edit in place and to clean up the CONTRIBUTED-BY file respectively. These were not added to the glibc sources because they're not expected to be of any use in future given that this is a one time task: https://gist.github.com/siddhesh/b5ecac94eabfd72ed2916d6d8157e7dc https://gist.github.com/siddhesh/15ea1f5e435ace9774f485030695ee02 Reviewed-by: Carlos O'Donell --- sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S | 1 - sysdeps/i386/i686/multiarch/memchr-sse2.S | 1 - sysdeps/i386/i686/multiarch/memcmp-sse4.S | 1 - sysdeps/i386/i686/multiarch/memcmp-ssse3.S | 1 - sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S | 1 - sysdeps/i386/i686/multiarch/memcpy-ssse3.S | 1 - sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S | 1 - sysdeps/i386/i686/multiarch/memrchr-sse2.S | 1 - sysdeps/i386/i686/multiarch/memset-sse2-rep.S | 1 - sysdeps/i386/i686/multiarch/memset-sse2.S | 1 - sysdeps/i386/i686/multiarch/s_fma-fma.c | 1 - sysdeps/i386/i686/multiarch/s_fma.c | 1 - sysdeps/i386/i686/multiarch/s_fmaf-fma.c | 1 - sysdeps/i386/i686/multiarch/s_fmaf.c | 1 - sysdeps/i386/i686/multiarch/strcat-sse2.S | 1 - sysdeps/i386/i686/multiarch/strcat-ssse3.S | 1 - sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S | 1 - sysdeps/i386/i686/multiarch/strchr-sse2.S | 1 - sysdeps/i386/i686/multiarch/strcmp-sse4.S | 1 - sysdeps/i386/i686/multiarch/strcmp-ssse3.S | 1 - sysdeps/i386/i686/multiarch/strcpy-sse2.S | 1 - sysdeps/i386/i686/multiarch/strcpy-ssse3.S | 1 - sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S | 1 - sysdeps/i386/i686/multiarch/strlen-sse2.S | 1 - sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S | 1 - sysdeps/i386/i686/multiarch/strrchr-sse2.S | 1 - sysdeps/i386/i686/multiarch/wcschr-sse2.S | 1 - sysdeps/i386/i686/multiarch/wcscmp-sse2.S | 1 - sysdeps/i386/i686/multiarch/wcscpy-ssse3.S | 1 - sysdeps/i386/i686/multiarch/wcslen-sse2.S | 1 - sysdeps/i386/i686/multiarch/wcsrchr-sse2.S | 1 - 31 files changed, 31 deletions(-) (limited to 'sysdeps/i386/i686/multiarch') diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S index f34ca20c08..7765016d9f 100644 --- a/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S @@ -1,6 +1,5 @@ /* Optimized memchr with sse2 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2.S b/sysdeps/i386/i686/multiarch/memchr-sse2.S index 6abce2d5da..c83794c983 100644 --- a/sysdeps/i386/i686/multiarch/memchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/memchr-sse2.S @@ -1,6 +1,5 @@ /* Optimized memchr with sse2 without bsf Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memcmp-sse4.S b/sysdeps/i386/i686/multiarch/memcmp-sse4.S index c3dcb10656..b94768b83c 100644 --- a/sysdeps/i386/i686/multiarch/memcmp-sse4.S +++ b/sysdeps/i386/i686/multiarch/memcmp-sse4.S @@ -1,6 +1,5 @@ /* memcmp with SSE4.2, wmemcmp with SSE4.2 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memcmp-ssse3.S b/sysdeps/i386/i686/multiarch/memcmp-ssse3.S index a31b2828d8..f797282992 100644 --- a/sysdeps/i386/i686/multiarch/memcmp-ssse3.S +++ b/sysdeps/i386/i686/multiarch/memcmp-ssse3.S @@ -1,6 +1,5 @@ /* memcmp with SSSE3, wmemcmp with SSSE3 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S index 97e6be7122..ea64635d8c 100644 --- a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S +++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S @@ -1,6 +1,5 @@ /* memcpy with SSSE3 and REP string. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S index 14e59f8812..162eea13a0 100644 --- a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S @@ -1,6 +1,5 @@ /* memcpy with SSSE3 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S index 6536c3c5c1..2577ec9e0b 100644 --- a/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S @@ -1,6 +1,5 @@ /* Optimized memrchr with sse2 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memrchr-sse2.S b/sysdeps/i386/i686/multiarch/memrchr-sse2.S index e81953f430..ba1476f25d 100644 --- a/sysdeps/i386/i686/multiarch/memrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/memrchr-sse2.S @@ -1,6 +1,5 @@ /* Optimized memrchr with sse2 without bsf Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memset-sse2-rep.S b/sysdeps/i386/i686/multiarch/memset-sse2-rep.S index 71b91fa7d0..aed96588f4 100644 --- a/sysdeps/i386/i686/multiarch/memset-sse2-rep.S +++ b/sysdeps/i386/i686/multiarch/memset-sse2-rep.S @@ -1,6 +1,5 @@ /* memset with SSE2 and REP string. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memset-sse2.S b/sysdeps/i386/i686/multiarch/memset-sse2.S index 5b4f7668d5..55a917cfde 100644 --- a/sysdeps/i386/i686/multiarch/memset-sse2.S +++ b/sysdeps/i386/i686/multiarch/memset-sse2.S @@ -1,6 +1,5 @@ /* memset with SSE2 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/s_fma-fma.c b/sysdeps/i386/i686/multiarch/s_fma-fma.c index 6266253207..0043c46700 100644 --- a/sysdeps/i386/i686/multiarch/s_fma-fma.c +++ b/sysdeps/i386/i686/multiarch/s_fma-fma.c @@ -1,6 +1,5 @@ /* FMA version of fma. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/s_fma.c b/sysdeps/i386/i686/multiarch/s_fma.c index 20e60afcf7..7d66aaef7a 100644 --- a/sysdeps/i386/i686/multiarch/s_fma.c +++ b/sysdeps/i386/i686/multiarch/s_fma.c @@ -1,6 +1,5 @@ /* Multiple versions of fma. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/s_fmaf-fma.c b/sysdeps/i386/i686/multiarch/s_fmaf-fma.c index 0fea4303da..6d07d7d2ee 100644 --- a/sysdeps/i386/i686/multiarch/s_fmaf-fma.c +++ b/sysdeps/i386/i686/multiarch/s_fmaf-fma.c @@ -1,6 +1,5 @@ /* FMA version of fmaf. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/s_fmaf.c b/sysdeps/i386/i686/multiarch/s_fmaf.c index 5fbd042c2a..b8394d05d0 100644 --- a/sysdeps/i386/i686/multiarch/s_fmaf.c +++ b/sysdeps/i386/i686/multiarch/s_fmaf.c @@ -1,6 +1,5 @@ /* Multiple versions of fmaf. Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcat-sse2.S b/sysdeps/i386/i686/multiarch/strcat-sse2.S index a89cda9766..84a1fec07b 100644 --- a/sysdeps/i386/i686/multiarch/strcat-sse2.S +++ b/sysdeps/i386/i686/multiarch/strcat-sse2.S @@ -1,6 +1,5 @@ /* strcat with SSE2 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcat-ssse3.S b/sysdeps/i386/i686/multiarch/strcat-ssse3.S index 982eb27176..ddc13f9bfa 100644 --- a/sysdeps/i386/i686/multiarch/strcat-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcat-ssse3.S @@ -1,6 +1,5 @@ /* strcat with SSSE3 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S index 3e590329b1..2d63876538 100644 --- a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S @@ -1,6 +1,5 @@ /* strchr with SSE2 with bsf Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strchr-sse2.S b/sysdeps/i386/i686/multiarch/strchr-sse2.S index 14aa927fbe..721f2ccdd1 100644 --- a/sysdeps/i386/i686/multiarch/strchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/strchr-sse2.S @@ -1,6 +1,5 @@ /* strchr SSE2 without bsf Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcmp-sse4.S b/sysdeps/i386/i686/multiarch/strcmp-sse4.S index 3d77f725bd..cddb994701 100644 --- a/sysdeps/i386/i686/multiarch/strcmp-sse4.S +++ b/sysdeps/i386/i686/multiarch/strcmp-sse4.S @@ -1,6 +1,5 @@ /* strcmp with SSE4.2 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcmp-ssse3.S b/sysdeps/i386/i686/multiarch/strcmp-ssse3.S index 50d480993d..ff743fb336 100644 --- a/sysdeps/i386/i686/multiarch/strcmp-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcmp-ssse3.S @@ -1,6 +1,5 @@ /* strcmp with SSSE3 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcpy-sse2.S b/sysdeps/i386/i686/multiarch/strcpy-sse2.S index bb3076b076..43744880be 100644 --- a/sysdeps/i386/i686/multiarch/strcpy-sse2.S +++ b/sysdeps/i386/i686/multiarch/strcpy-sse2.S @@ -1,6 +1,5 @@ /* strcpy with SSE2 and unaligned load Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcpy-ssse3.S b/sysdeps/i386/i686/multiarch/strcpy-ssse3.S index 05646d994f..7433df82f2 100644 --- a/sysdeps/i386/i686/multiarch/strcpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcpy-ssse3.S @@ -1,6 +1,5 @@ /* strcpy with SSSE3 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S index 757079d4ad..0b7eb0703d 100644 --- a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S @@ -1,6 +1,5 @@ /* strlen with SSE2 and BSF Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strlen-sse2.S b/sysdeps/i386/i686/multiarch/strlen-sse2.S index 998f722b32..fe1151032c 100644 --- a/sysdeps/i386/i686/multiarch/strlen-sse2.S +++ b/sysdeps/i386/i686/multiarch/strlen-sse2.S @@ -1,6 +1,5 @@ /* strlen with SSE2 Copyright (C) 2010-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S index 8d76306374..b40bb9830b 100644 --- a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S @@ -1,6 +1,5 @@ /* strrchr with SSE2 with bsf and bsr Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strrchr-sse2.S b/sysdeps/i386/i686/multiarch/strrchr-sse2.S index 7f15edd6eb..d0d8551d07 100644 --- a/sysdeps/i386/i686/multiarch/strrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/strrchr-sse2.S @@ -1,6 +1,5 @@ /* strrchr SSE2 without bsf and bsr Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/wcschr-sse2.S b/sysdeps/i386/i686/multiarch/wcschr-sse2.S index e84e87c9cc..8fad35da13 100644 --- a/sysdeps/i386/i686/multiarch/wcschr-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcschr-sse2.S @@ -1,6 +1,5 @@ /* wcschr with SSE2, without using bsf instructions Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/wcscmp-sse2.S b/sysdeps/i386/i686/multiarch/wcscmp-sse2.S index 262baf3707..cad6c414cc 100644 --- a/sysdeps/i386/i686/multiarch/wcscmp-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcscmp-sse2.S @@ -1,6 +1,5 @@ /* wcscmp with SSE2 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S b/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S index c710bb22bb..5f68ff2bae 100644 --- a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S @@ -1,6 +1,5 @@ /* wcscpy with SSSE3 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/wcslen-sse2.S b/sysdeps/i386/i686/multiarch/wcslen-sse2.S index 2344134c6e..f650e7911d 100644 --- a/sysdeps/i386/i686/multiarch/wcslen-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcslen-sse2.S @@ -1,6 +1,5 @@ /* wcslen with SSE2 Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S b/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S index 10ce32cbbb..ad931b6a4d 100644 --- a/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S @@ -1,6 +1,5 @@ /* wcsrchr with SSE2, without using bsf instructions. Copyright (C) 2011-2021 Free Software Foundation, Inc. - Contributed by Intel Corporation. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or -- cgit 1.4.1