1 /* 2 * Copyright (c) 2021 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_ 8 #define ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_ 9 10 11 #define __no_optimization __attribute__((optnone)) 12 #include <toolchain/gcc.h> 13 14 15 #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_ */ 16