This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ARM DSP库中__SIMD32(addr) 宏定义?

/**

* @brief definition to read/write two 16 bit values.

*/

#define __SIMD32(addr) (*(int32_t **) & (addr))

为什么不写成 #define __SIMD32(addr) (int32_t *) (addr)

有什么好处?