컴파일러 오류 C2164
'function': 내장 함수가 선언되지 않음
pragma는 intrinsic
선언되지 않은 함수를 사용합니다(/Oi에서만 발생). 또는 컴파일러 내장 함수 중 하나가 헤더 파일을 포함하지 않고 사용되었습니다.
다음 샘플에서는 C2164를 생성합니다.
// C2164.c
// compile with: /c
// processor: x86
// Uncomment the following line to resolve.
// #include "xmmintrin.h"
void b(float *p) {
_mm_load_ss(p); // C2164
}