Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 546 Bytes

compiler-error-c2430.md

File metadata and controls

25 lines (20 loc) · 546 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2430
Compiler Error C2430
11/04/2016
C2430
C2430
07c20f76-63e1-4d22-b2a9-98b0d45c5cac

Compiler Error C2430

more than one index register in 'identifier'

More than one register is scaled. The compiler supports scaled indexing, but you can only scale one register.

Example

The following sample generates C2430.

// C2430.cpp
// processor: x86
int main() {
   _asm mov eax, [ebx*2+ecx*4] // C2430
}