From: Cedric Landet Date: Fri, 31 Mar 2023 12:51:15 +0000 (+0200) Subject: ada: Fix coding style in init.c X-Git-Tag: basepoints/gcc-15~8767 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7302efc23eb80f9a40954ac7e316889cd848ca12;p=thirdparty%2Fgcc.git ada: Fix coding style in init.c The coding style rules require to avoid using FIXME comments. ??? is preferred. gcc/ada/ * init.c: Replace FIXME by ??? --- diff --git a/gcc/ada/init.c b/gcc/ada/init.c index 5212a38490d3..53ca1421111e 100644 --- a/gcc/ada/init.c +++ b/gcc/ada/init.c @@ -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;