From: Arnaud Charlet Date: Fri, 10 Apr 2009 15:20:30 +0000 (+0200) Subject: Complete previous change. X-Git-Tag: releases/gcc-4.5.0~6681 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ca3588143735b0fc093821b6deed6a749ef72b9;p=thirdparty%2Fgcc.git Complete previous change. From-SVN: r145921 --- diff --git a/gcc/ada/init.c b/gcc/ada/init.c index 78c55b83572c..7a4ff3a09592 100644 --- a/gcc/ada/init.c +++ b/gcc/ada/init.c @@ -1822,8 +1822,7 @@ __gnat_map_signal (int sig) exception = &storage_error; msg = "SIGBUS: possible stack overflow"; break; -#else -#if (_WRS_VXWORKS_MAJOR = 6) +#elif (_WRS_VXWORKS_MAJOR == 6) case SIGILL: exception = &constraint_error; msg = "SIGILL"; @@ -1835,6 +1834,10 @@ __gnat_map_signal (int sig) exception = &storage_error; msg = "SIGSEGV: possible stack overflow"; break; + case SIGBUS: + exception = &program_error; + msg = "SIGBUS"; + break; #else /* VxWorks 6 kernel mode with probing. SIGBUS for guard page hit */ case SIGSEGV: @@ -1857,7 +1860,6 @@ __gnat_map_signal (int sig) exception = &program_error; msg = "SIGSEGV"; break; -#endif case SIGBUS: exception = &program_error; msg = "SIGBUS";