mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix VLD1/VST1 n=4.
This commit is contained in:
parent
f3d38ee269
commit
60bbf4af3b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue