分享方式:


編譯器警告 (層級 1) C4558

運算元 'value' 的值超出範圍 'lowerbound - upperbound'

傳遞至元件語言指令的值超出為 參數指定的範圍。 值將會被截斷。

下列範例會產生 C4558:

// C4558.cpp
// compile with: /W1
// processor: x86
void asm_test() {
   __asm pinsrw   mm1, eax, 8;   // C4558
}

int main() {
}