]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgomp/error.c
jit: prevent ICE with type mismatch in gcc_jit_block_add_assignment_op
[thirdparty/gcc.git] / libgomp / error.c
CommitLineData
d353bf18 1/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
1e8e9920 2 Contributed by Richard Henderson <rth@redhat.com>.
3
c35c9a62 4 This file is part of the GNU Offloading and Multi Processing Library
5 (libgomp).
1e8e9920 6
7 Libgomp is free software; you can redistribute it and/or modify it
6bc9506f 8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
1e8e9920 11
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6bc9506f 14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
1e8e9920 15 more details.
16
6bc9506f 17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
1e8e9920 20
6bc9506f 21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
1e8e9920 25
26/* This file contains routines used to signal errors. Most places in the
27 OpenMP API do not make any provision for failure, so we can't just
28 defer the decision on reporting the problem to the user; we must do it
29 ourselves or not at all. */
30/* ??? Is this about what other implementations do? Assume stderr hasn't
31 been pointed somewhere unsafe? */
32
33#include "libgomp.h"
34#include <stdarg.h>
35#include <stdio.h>
36#include <stdlib.h>
37
38
39static void
40gomp_verror (const char *fmt, va_list list)
41{
42 fputs ("\nlibgomp: ", stderr);
43 vfprintf (stderr, fmt, list);
44 fputc ('\n', stderr);
45}
46
47void
48gomp_error (const char *fmt, ...)
49{
50 va_list list;
51
52 va_start (list, fmt);
53 gomp_verror (fmt, list);
54 va_end (list);
55}
56
57void
58gomp_fatal (const char *fmt, ...)
59{
60 va_list list;
61
62 va_start (list, fmt);
63 gomp_verror (fmt, list);
64 va_end (list);
65
66 exit (EXIT_FAILURE);
67}