Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 663 Bytes

compiler-error-c2164.md

File metadata and controls

26 lines (22 loc) · 663 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2164
Compiler Error C2164
11/04/2016
C2164
C2164
55df5024-68a8-45a8-ae6c-e6dba35318a2

Compiler Error C2164

'function' : intrinsic function not declared

An intrinsic pragma uses an undeclared function (only occurs with /Oi). Or, one of the compiler intrinsics was used without including its header file.

The following sample generates 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
}