You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gen.c 255B

1234567891011
  1. #include "gen/gen.h"
  2. #include "bytecode.h"
  3. static void put(struct l2_bufio_writer *writer, l2_word word) {
  4. l2_bufio_put_n(writer, &word, sizeof(word));
  5. }
  6. void l2_gen_stack_frame(struct l2_bufio_writer *writer) {
  7. put(writer, L2_OP_ALLOC_NAMESPACE);
  8. }