Source file: /~heha/hsn/bl/cmsis4.zip/core_cmSimd.h

/**************************************************************************//**
 * @file     core_cmSimd.h
 * @brief    CMSIS Cortex-M SIMD Header File
 * @version  V4.30
 * @date     20. October 2015
 * Copyright (c) 2009 - 2015 ARM LIMITED
 ******************************************************************************/
#if   defined ( __ICCARM__ )
 #pragma system_include		// treat file as system include file for MISRA check
#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
  #pragma clang system_header	// treat file as system include file
#endif

#pragma once

#ifdef __cplusplus
 extern "C" {
#endif


/* ###################	Compiler specific Intrinsics  ########################### */
/** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics
  Access to dedicated SIMD instructions
*/

// RealView Compiler
#if   defined ( __CC_ARM )
  #include "cmsis_armcc.h"

// ARM Compiler V6
#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
  #include "cmsis_armcc_V6.h"

// GNU Compiler
#elif defined ( __GNUC__ )
  #include "cmsis_gcc.h"

// ICC Compiler
#elif defined ( __ICCARM__ )
  #include <cmsis_iar.h>

// TI CCS Compiler
#elif defined ( __TMS470__ )
  #include <cmsis_ccs.h>

// TASKING Compiler
#elif defined ( __TASKING__ )
  /*
   * The CMSIS functions have been implemented as intrinsics in the compiler.
   * Please use "carm -?i" to get an up to date list of all intrinsics,
   * Including the CMSIS ones.
   */

// COSMIC Compiler
#elif defined ( __CSMC__ )
  #include <cmsis_csm.h>

#endif


#ifdef __cplusplus
}
#endif
Detected encoding: ASCII (7 bit)2