zephyr/include/zephyr/toolchain/armclang.h
Gerard Marull-Paretas fb9b3bcd93 include: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all includes within
include directory to the new prefix <zephyr/...>. Note that the
conversion has been scripted, refer to zephyrproject-rtos#45388 for more
details.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-05-06 20:03:00 +02:00

24 lines
644 B
C

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
#define ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
#include <zephyr/toolchain/llvm.h>
/*
* To reuse as much as possible from the llvm.h header we only redefine the
* __GENERIC_SECTION and Z_GENERIC_SECTION macros here to include the `used` keyword.
*/
#undef __GENERIC_SECTION
#undef Z_GENERIC_SECTION
#define __GENERIC_SECTION(segment) __attribute__((section(STRINGIFY(segment)), used))
#define Z_GENERIC_SECTION(segment) __GENERIC_SECTION(segment)
#endif /* ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_ */