llvm.h 301 B

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