aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs')
-rw-r--r--Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs b/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
index a7e0e0f9..534dba57 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
+++ b/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
@@ -1,8 +1,8 @@
#define SimdFmov
-using NUnit.Framework;
+using ARMeilleure.State;
-using System.Runtime.Intrinsics;
+using NUnit.Framework;
namespace Ryujinx.Tests.Cpu
{
@@ -36,7 +36,7 @@ namespace Ryujinx.Tests.Cpu
opcodes |= ((imm8 & 0xFFu) << 13);
ulong z = TestContext.CurrentContext.Random.NextULong();
- Vector128<float> v0 = MakeVectorE0E1(z, z);
+ V128 v0 = MakeVectorE0E1(z, z);
SingleOpcode(opcodes, v0: v0);
@@ -50,7 +50,7 @@ namespace Ryujinx.Tests.Cpu
opcodes |= ((imm8 & 0xFFu) << 13);
ulong z = TestContext.CurrentContext.Random.NextULong();
- Vector128<float> v0 = MakeVectorE1(z);
+ V128 v0 = MakeVectorE1(z);
SingleOpcode(opcodes, v0: v0);