mirror of git://gcc.gnu.org/git/gcc.git
backport: mpxrt.c (handler): Fix verbosity for error message.
libmpx/ Backport from mainline r232619. 2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com> * mpxrt/mpxrt.c (handler): Fix verbosity for error message. From-SVN: r232621
This commit is contained in:
parent
fa0793392a
commit
5c57b3d717
|
|
@ -1,3 +1,11 @@
|
|||
2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
|
||||
|
||||
Backport from mainline r232619.
|
||||
2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
|
||||
|
||||
* mpxrt/mpxrt.c (handler): Fix verbosity for
|
||||
error message.
|
||||
|
||||
2015-12-04 Release Manager
|
||||
|
||||
* GCC 5.3.0 released.
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ handler (int sig __attribute__ ((unused)),
|
|||
__mpxrt_write_uint (VERB_ERROR, trapno, 10);
|
||||
__mpxrt_write (VERB_ERROR, ", ip = 0x");
|
||||
__mpxrt_write_uint (VERB_ERROR, ip, 16);
|
||||
__mpxrt_write (VERB_BR, "\n");
|
||||
__mpxrt_write (VERB_ERROR, "\n");
|
||||
exit (255);
|
||||
}
|
||||
else
|
||||
|
|
@ -305,7 +305,7 @@ handler (int sig __attribute__ ((unused)),
|
|||
__mpxrt_write_uint (VERB_ERROR, trapno, 10);
|
||||
__mpxrt_write (VERB_ERROR, "! at 0x");
|
||||
__mpxrt_write_uint (VERB_ERROR, ip, 16);
|
||||
__mpxrt_write (VERB_BR, "\n");
|
||||
__mpxrt_write (VERB_ERROR, "\n");
|
||||
exit (255);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue