From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1033) id 00A8C385C416; Thu, 18 Nov 2021 15:23:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 00A8C385C416 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: David Edelsohn To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-5374] Fix typo. X-Act-Checkin: gcc X-Git-Author: David Edelsohn X-Git-Refname: refs/heads/master X-Git-Oldrev: 90de06a7b3ce6ae8381136e58a2dde91fbbb6eff X-Git-Newrev: 1b2b930152b1009690eba549a750a43948475aa4 Message-Id: <20211118152316.00A8C385C416@sourceware.org> Date: Thu, 18 Nov 2021 15:23:16 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Nov 2021 15:23:16 -0000 https://gcc.gnu.org/g:1b2b930152b1009690eba549a750a43948475aa4 commit r12-5374-g1b2b930152b1009690eba549a750a43948475aa4 Author: David Edelsohn Date: Thu Nov 18 10:20:12 2021 -0500 Fix typo. libgomp/ChangeLog: * alloc.c (gomp_aligned_alloc): Fix typo. Diff: --- libgomp/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgomp/alloc.c b/libgomp/alloc.c index 3109b86a4d1..fa58a58fce6 100644 --- a/libgomp/alloc.c +++ b/libgomp/alloc.c @@ -75,7 +75,7 @@ gomp_aligned_alloc (size_t al, size_t size) #elif defined(HAVE_POSIX_MEMALIGN) if (posix_memalign (&ret, al, size) != 0) ret = NULL; -#lif defined(HAVE_ALIGNED_ALLOC) +#elif defined(HAVE_ALIGNED_ALLOC) { size_t sz = (size + al - 1) & ~(al - 1); if (__builtin_expect (sz >= size, 1))