refactor: oops

This commit is contained in:
2024-09-14 18:45:55 +03:00
parent e4166fe450
commit d7e4e7a024

View File

@@ -471,9 +471,7 @@ public class Instruction {
public static Instruction stackRealloc(int start, int n) { public static Instruction stackRealloc(int start, int n) {
return new Instruction(Type.STACK_REALLOC, start, start + n); return new Instruction(Type.STACK_REALLOC, start, start + n);
} }
/** @Deprecated
* @deprecated
*/
public static Instruction stackFree(int n) { public static Instruction stackFree(int n) {
return new Instruction(Type.STACK_FREE, n); return new Instruction(Type.STACK_FREE, n);
} }