blob: 4a5e84d801a5d6e699668b95f5381f0687ea4348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: Unlicense
*/
#pragma once
#ifdef __clang__
# define UNREACHABLE __builtin_unreachable
#elif __GNUC__
# define UNREACHABLE __builtin_unreachable
#else
# define UNREACHABLE
#endif
|