Fix VLD1/VST1 n=4.

This commit is contained in:
Unknown W. Brackets 2014-03-21 02:24:38 -07:00
parent f3d38ee269
commit 60bbf4af3b

View file

@ -2613,7 +2613,7 @@ static int RegCountToType(int nRegs, NEONAlignment align) {
_dbg_assert_msg_(JIT, !((int)align & 1), "align & 1 must be == 0");
return 6;
case 4:
return 4;
return 2;
default:
_dbg_assert_msg_(JIT, false, "Invalid number of registers passed to vector load/store");
return 0;