Fix for PR1654 - implement "movstrsi" pattern to copy simple blocks of memory.
[official-gcc.git] / libchill / unhex.c
blobe9077c014538c2929898850e0235d33e6acb5e3c
1 /* Implement runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* As a special exception, if you link this library with other files,
22 some of which are compiled with GCC, to produce an executable,
23 this library does not by itself cause the resulting executable
24 to be covered by the GNU General Public License.
25 This exception does not however invalidate any other reasons why
26 the executable file might be covered by the GNU General Public License. */
28 #define __CHILL_LIB__
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <setjmp.h>
35 * function unhandled_exception
37 * parameter:
38 * exname name of exception
39 * file filename
40 * lineno line number
41 * user_arg user specified argument
43 * returns:
44 * never
46 * abstract:
47 * print an error message about unhandled exception and call abort
51 void
52 unhandled_exception (exname, file, lineno, user_arg)
53 char *exname;
54 char *file;
55 int lineno;
56 int user_arg;
58 sleep (1); /* give previous output a chance to finish */
59 fprintf (stderr, "ChillLib: unhandled exception `%s' in file %s at line %d\n",
60 exname, file, lineno);
61 fflush (stderr);
62 abort ();
63 } /* unhandled_exception */