Fix mistake on astc conversion, make some static methods that shouldn't be public private, remove old commmented out code

This commit is contained in:
gdkchan 2018-06-02 11:44:52 -03:00
parent 7869b7e257
commit 65f781ae7b
3 changed files with 6 additions and 6 deletions

View file

@ -244,7 +244,7 @@ namespace ChocolArm64.Instruction
nameof(ASoftFallback.ReverseBytes32_32), nameof(ASoftFallback.ReverseBytes32_32),
nameof(ASoftFallback.ReverseBytes32_64)); nameof(ASoftFallback.ReverseBytes32_64));
public static void EmitFallback32_64(AILEmitterCtx Context, string Name32, string Name64) private static void EmitFallback32_64(AILEmitterCtx Context, string Name32, string Name64)
{ {
AOpCodeAlu Op = (AOpCodeAlu)Context.CurrOp; AOpCodeAlu Op = (AOpCodeAlu)Context.CurrOp;

View file

@ -27,7 +27,7 @@ namespace ChocolArm64.Instruction
public static void Ldr(AILEmitterCtx Context) => EmitLdr(Context, false); public static void Ldr(AILEmitterCtx Context) => EmitLdr(Context, false);
public static void Ldrs(AILEmitterCtx Context) => EmitLdr(Context, true); public static void Ldrs(AILEmitterCtx Context) => EmitLdr(Context, true);
public static void EmitLdr(AILEmitterCtx Context, bool Signed) private static void EmitLdr(AILEmitterCtx Context, bool Signed)
{ {
AOpCodeMem Op = (AOpCodeMem)Context.CurrOp; AOpCodeMem Op = (AOpCodeMem)Context.CurrOp;

View file

@ -50,7 +50,7 @@ namespace ChocolArm64.Instruction
EmitBitBif(Context, false); EmitBitBif(Context, false);
} }
public static void EmitBitBif(AILEmitterCtx Context, bool NotRm) private static void EmitBitBif(AILEmitterCtx Context, bool NotRm)
{ {
AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp; AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;