mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 05:29:29 +08:00
diagnostic.c (fancy_abort): Don't repeat "internal error".
* diagnostic.c (fancy_abort): Don't repeat "internal error". * toplev.c (crash_signal): Likewise. From-SVN: r56669
This commit is contained in:
parent
1f67610074
commit
9d533cb558
@ -1,3 +1,8 @@
|
||||
2002-08-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
|
||||
* diagnostic.c (fancy_abort): Don't repeat "internal error".
|
||||
* toplev.c (crash_signal): Likewise.
|
||||
|
||||
Fri Aug 30 00:33:37 2002 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* doc/cpp.texi (__NEXT_RUNTIME__): Extended documentation.
|
||||
|
@ -1350,8 +1350,7 @@ fancy_abort (file, line, function)
|
||||
int line;
|
||||
const char *function;
|
||||
{
|
||||
internal_error ("Internal compiler error in %s, at %s:%d",
|
||||
function, trim_filename (file), line);
|
||||
internal_error ("in %s, at %s:%d", function, trim_filename (file), line);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1700,7 +1700,7 @@ static void
|
||||
crash_signal (signo)
|
||||
int signo;
|
||||
{
|
||||
internal_error ("internal error: %s", strsignal (signo));
|
||||
internal_error ("%s", strsignal (signo));
|
||||
}
|
||||
|
||||
/* Strip off a legitimate source ending from the input string NAME of
|
||||
|
Loading…
Reference in New Issue
Block a user