]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/lisp.h (GCALIGNED): Clarify comment (Bug#29040).
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Nov 2017 03:04:25 +0000 (20:04 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Nov 2017 03:05:33 +0000 (20:05 -0700)
src/lisp.h

index bf9db591bd537e8a3f19e45b102fc236ac0fbf80..a71ba22618e9b6c9f4a1f225ac6cbce4fb1ccdca 100644 (file)
@@ -272,8 +272,9 @@ error !;
 #endif
 
 /* Declare an object to have an address that is a multiple of
-   GCALIGNMENT.  alignas is not suitable here, as it fails if the
-   object's natural alignment exceeds GCALIGNMENT.  */
+   GCALIGNMENT.  This is a no-op if the object's natural alignment is
+   already a multiple of GCALIGNMENT.  alignas is not suitable here,
+   as it fails if the object's natural alignment exceeds GCALIGNMENT.  */
 #ifdef HAVE_STRUCT_ATTRIBUTE_ALIGNED
 # define GCALIGNED __attribute__ ((aligned (GCALIGNMENT)))
 #else