Update AILEmitterCtx.cs

This commit is contained in:
LDj3SNuD 2018-10-24 20:24:09 +02:00 committed by GitHub
parent 2fd23577ce
commit 7f6c3894f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,6 +38,7 @@ namespace ChocolArm64.Translation
private const int Tmp3Index = -3;
private const int Tmp4Index = -4;
private const int Tmp5Index = -5;
private const int Tmp6Index = -6;
public AILEmitterCtx(
ATranslatorCache Cache,
@ -395,6 +396,9 @@ namespace ChocolArm64.Translation
public void EmitLdvectmp() => EmitLdvec(Tmp5Index);
public void EmitStvectmp() => EmitStvec(Tmp5Index);
public void EmitLdvectmp2() => EmitLdvec(Tmp6Index);
public void EmitStvectmp2() => EmitStvec(Tmp6Index);
public void EmitLdint(int Index) => Ldloc(Index, AIoType.Int);
public void EmitStint(int Index) => Stloc(Index, AIoType.Int);
@ -547,4 +551,4 @@ namespace ChocolArm64.Translation
EmitStflg(Flag);
}
}
}
}