public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-5374] Fix typo.
@ 2021-11-18 15:23 David Edelsohn
  0 siblings, 0 replies; only message in thread
From: David Edelsohn @ 2021-11-18 15:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:1b2b930152b1009690eba549a750a43948475aa4

commit r12-5374-g1b2b930152b1009690eba549a750a43948475aa4
Author: David Edelsohn <dje.gcc@gmail.com>
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))


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-11-18 15:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-18 15:23 [gcc r12-5374] Fix typo David Edelsohn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).