1 /* This file is part of the program GDB.
3 Copyright (C) 1997-2020 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /* The subtle difference between SIM_ASSERT and ASSERT is that
25 SIM_ASSERT passes `sd' to sim_io_error for the SIM_DESC,
26 ASSERT passes NULL. */
28 #if !defined (SIM_ASSERT)
29 #if defined (WITH_ASSERT)
31 #include "libiberty.h"
32 #define SIM_ASSERT(EXPRESSION) \
39 /* report the failure */ \
40 sim_io_error (sd, "%s:%d: assertion failed - %s", \
41 lbasename (__FILE__), __LINE__, #EXPRESSION); \
47 #define SIM_ASSERT(EXPRESSION) do { /*nothing*/; } while (0)
52 #if defined (WITH_ASSERT)
54 #include "libiberty.h"
55 #define ASSERT(EXPRESSION) \
62 /* report the failure */ \
63 sim_io_error (NULL, "%s:%d: assertion failed - %s", \
64 lbasename (__FILE__), __LINE__, #EXPRESSION); \
70 #define ASSERT(EXPRESSION) do { /*nothing*/; } while (0)