diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-08-25 02:00:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-08-25 02:00:39 +0000 |
commit | 69cc18d2f050933ef15a2bc601be6cdfa2f8f0f4 (patch) | |
tree | c79d3265a9183e8f69050aa23b51b0baf8332c5b /gas/gasp.c | |
parent | 791ee5194924181b9cec36ba2901e2c83559d618 (diff) | |
download | gdb-69cc18d2f050933ef15a2bc601be6cdfa2f8f0f4.zip gdb-69cc18d2f050933ef15a2bc601be6cdfa2f8f0f4.tar.gz gdb-69cc18d2f050933ef15a2bc601be6cdfa2f8f0f4.tar.bz2 |
* gasp.c (as_abort): New function.
* sb.c (sb_build): Revert yesterday's patch.
Diffstat (limited to 'gas/gasp.c')
-rw-r--r-- | gas/gasp.c | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -3644,3 +3644,18 @@ main (argc, argv) quit (); return 0; } + +/* This function is used because an abort in some of the other files + may be compiled into as_abort because they include as.h. */ + +void +as_abort (file, line, fn) + const char *file, *fn; + int line; +{ + fprintf (stderr, "Internal error, aborting at %s line %d", file, line); + if (fn) + fprintf (stderr, " in %s", fn); + fprintf (stderr, "\nPlease report this bug.\n"); + exit (1); +} |