misc: chore: Use collection expressions everywhere else (except VP9)

This commit is contained in:
Evan Husted
2025-01-26 15:59:11 -06:00
parent 0f857400b6
commit ac838aa81d
59 changed files with 3246 additions and 2452 deletions

View File

@@ -99,36 +99,36 @@ namespace Ryujinx.Tests.Cpu
#region "ValueSource (Opcodes)"
private static uint[] _F_Ccmp_Ccmpe_S_S_()
{
return new[]
{
return
[
0x1E220420u, // FCCMP S1, S2, #0, EQ
0x1E220430u, // FCCMPE S1, S2, #0, EQ
};
0x1E220430u // FCCMPE S1, S2, #0, EQ
];
}
private static uint[] _F_Ccmp_Ccmpe_S_D_()
{
return new[]
{
return
[
0x1E620420u, // FCCMP D1, D2, #0, EQ
0x1E620430u, // FCCMPE D1, D2, #0, EQ
};
0x1E620430u // FCCMPE D1, D2, #0, EQ
];
}
private static uint[] _F_Csel_S_S_()
{
return new[]
{
0x1E220C20u, // FCSEL S0, S1, S2, EQ
};
return
[
0x1E220C20u // FCSEL S0, S1, S2, EQ
];
}
private static uint[] _F_Csel_S_D_()
{
return new[]
{
0x1E620C20u, // FCSEL D0, D1, D2, EQ
};
return
[
0x1E620C20u // FCSEL D0, D1, D2, EQ
];
}
#endregion