Fix typo.
authorDavid Edelsohn <dje.gcc@gmail.com>
Thu, 18 Nov 2021 15:20:12 +0000 (10:20 -0500)
committerDavid Edelsohn <dje.gcc@gmail.com>
Thu, 18 Nov 2021 15:26:55 +0000 (10:26 -0500)
libgomp/ChangeLog:

* alloc.c (gomp_aligned_alloc): Fix typo.

libgomp/alloc.c

index 3109b86..fa58a58 100644 (file)
@@ -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))