]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ada: Fix coding style in init.c
authorCedric Landet <landet@adacore.com>
Fri, 31 Mar 2023 12:51:15 +0000 (14:51 +0200)
committerMarc Poulhiès <poulhies@adacore.com>
Tue, 30 May 2023 07:12:15 +0000 (09:12 +0200)
The coding style rules require to avoid using FIXME comments. ??? is
preferred.

gcc/ada/

* init.c: Replace FIXME by ???

gcc/ada/init.c

index 5212a38490d31e13ffe6ea9473ee3fd815a577cc..53ca1421111e1b95bd7de2fed6be15efb87be305 100644 (file)
@@ -248,7 +248,7 @@ __gnat_error_handler (int sig,
   switch (sig)
     {
     case SIGSEGV:
-      /* FIXME: we need to detect the case of a *real* SIGSEGV.  */
+      /* ??? we need to detect the case of a *real* SIGSEGV.  */
       exception = &storage_error;
       msg = "stack overflow or erroneous memory access";
       break;
@@ -340,7 +340,7 @@ __gnat_error_handler (int sig, siginfo_t *si ATTRIBUTE_UNUSED, void *ucontext)
   switch (sig)
     {
     case SIGSEGV:
-      /* FIXME: we need to detect the case of a *real* SIGSEGV.  */
+      /* ??? we need to detect the case of a *real* SIGSEGV.  */
       exception = &storage_error;
       msg = "stack overflow or erroneous memory access";
       break;