TT Zephyr Platforms 18.11.99
Tenstorrent Firmware
Loading...
Searching...
No Matches
compiler.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Tenstorrent AI ULC
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#ifndef COMPILER_H_INCLUDED
7#define COMPILER_H_INCLUDED
8
9#include <stddef.h>
10
11#if __STDC_VERSION__ < 202311L
12#define unreachable() (__builtin_unreachable())
13#endif
14
15#endif