إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
more than one index register in 'identifier'
Remarks
More than one register is scaled. The compiler supports scaled indexing, but you can only scale one register.
Example
The following example generates C2430.
// C2430.cpp
// processor: x86
int main() {
_asm mov eax, [ebx*2+ecx*4] // C2430
}