Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / sim / bpf / traps.c
CommitLineData
b26e2ae7 1/* Trap handlers for eBPF.
88b9d363 2 Copyright (C) 2020-2022 Free Software Foundation, Inc.
b26e2ae7
JM
3
4 This file is part of GDB, the GNU debugger.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
6df01ab8
MF
19/* This must come before any other includes. */
20#include "defs.h"
21
b26e2ae7
JM
22#define WANT_CPU bpfbf
23#define WANT_CPU_BPFBF
24
0316fb52
JM
25#include <stdlib.h>
26
b26e2ae7
JM
27#include "sim-main.h"
28
29SEM_PC
30sim_engine_invalid_insn (SIM_CPU *current_cpu ATTRIBUTE_UNUSED,
31 IADDR cia ATTRIBUTE_UNUSED,
32 SEM_PC pc ATTRIBUTE_UNUSED)
33{
34 /* Can't just return 0 here: the return value is used to set vpc
35 (see decdde-{le,be}.c)
36 Returning 0 will cause an infinite loop! */
37 abort();
38}
This page took 0.096165 seconds and 4 git commands to generate.