diff options
author | Cedric Landet <landet@adacore.com> | 2023-03-31 14:51:15 +0200 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2023-05-30 09:12:15 +0200 |
commit | 7302efc23eb80f9a40954ac7e316889cd848ca12 (patch) | |
tree | 1dd29373cbaf5333dcdca41fad8e09255249a7b5 /gcc/ada/init.c | |
parent | e5405f065bace0685cb3b8878d1dfc7a6e7ef409 (diff) | |
download | gcc-7302efc23eb80f9a40954ac7e316889cd848ca12.zip gcc-7302efc23eb80f9a40954ac7e316889cd848ca12.tar.gz gcc-7302efc23eb80f9a40954ac7e316889cd848ca12.tar.bz2 |
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 ???
Diffstat (limited to 'gcc/ada/init.c')
-rw-r--r-- | gcc/ada/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/init.c b/gcc/ada/init.c index 5212a38..53ca142 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; |