]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdbsupport] Fix some typos
authorTom de Vries <tdevries@suse.de>
Thu, 6 Mar 2025 11:58:25 +0000 (12:58 +0100)
committerTom de Vries <tdevries@suse.de>
Thu, 6 Mar 2025 11:58:25 +0000 (12:58 +0100)
Fix typos:
...
mentionning -> mentioning
suppported -> supported
aligment -> alignment
...

gdbsupport/common-defs.h
gdbsupport/common.m4
gdbsupport/packed.h

index 2cb71e2ebca6dd684ef2a798e7a9b8117ac5e633..7dcaa5b98451f873a8031daaf0dcfd2990d9b806 100644 (file)
    and builds with -O2, and ... the assert doesn't trigger, because it's
    optimized away by gcc.
 
-   There's no suppported recipe to prevent the assertion from being optimized
+   There's no supported recipe to prevent the assertion from being optimized
    away (other than: build with -O0, or remove the nonnull attribute).  Note
    that -fno-delete-null-pointer-checks does not help.  A patch was submitted
    to improve gcc documentation to point this out more clearly (
index 54290cc85e7800825e3b1a911d1bf8fea7722458..63e5e933ba901559ad149c98c41c66a077306769 100644 (file)
@@ -292,7 +292,7 @@ AC_CHECK_HEADERS([ \
 ])
 
 dnl Check that the provided value ($1) is either "yes" or "no".  If not,
-dnl emit an error message mentionning the configure option $2, and abort
+dnl emit an error message mentioning the configure option $2, and abort
 dnl the script.
 AC_DEFUN([GDB_CHECK_YES_NO_VAL],
         [
@@ -306,7 +306,7 @@ AC_DEFUN([GDB_CHECK_YES_NO_VAL],
          ])
 
 dnl Check that the provided value ($1) is either "yes", "no" or "auto".  If not,
-dnl emit an error message mentionning the configure option $2, and abort
+dnl emit an error message mentioning the configure option $2, and abort
 dnl the script.
 AC_DEFUN([GDB_CHECK_YES_NO_AUTO_VAL],
         [
index 37f02d26373c24f2ccaf2e68e38575ee14a10000..3271adc0985742e6ab93d83cf270ba136607fff4 100644 (file)
@@ -75,7 +75,7 @@ public:
     m_val = val;
 #endif
 
-    /* Ensure size and aligment are what we expect.  */
+    /* Ensure size and alignment are what we expect.  */
     static_assert (sizeof (packed) == Bytes);
     static_assert (alignof (packed) == 1);