about summary refs log tree commit diff
path: root/src/instruction/pushzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/instruction/pushzero.c')
-rw-r--r--src/instruction/pushzero.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/instruction/pushzero.c b/src/instruction/pushzero.c
deleted file mode 100644
index cd0a023..0000000
--- a/src/instruction/pushzero.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "3cl.h"
-
-#include "stack.h"
-
-struct CCLFrame *ccl_instruction_pushzero(struct CCL *ccl, struct CCLFrame *frame)
-{
-    ccl_stack_push(&ccl->stack, 0);
-    return frame;
-}