From 666e0a4159249676b4490e378e481c15f873b007 Mon Sep 17 00:00:00 2001 From: Meyer Simon Date: Thu, 27 Mar 2025 17:28:16 -0400 Subject: [PATCH] No change #t51 --- src/intermediate_code.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intermediate_code.h b/src/intermediate_code.h index c2aa796..446f4c4 100644 --- a/src/intermediate_code.h +++ b/src/intermediate_code.h @@ -25,11 +25,11 @@ void emit_binary_op(char* result, char* op, char* arg1, char* arg2); void emit_unary_op(char* result, char* op, char* arg); void emit_assignment(char* target, char* source); // TODO: Find out what these are suposed to do. Guess is create an entry in -// the list of instructions +// the list of instructions. Guess is that its suposed to ret a struct ptr // * Implement integer/boolean/character specific operation handling -// TODO: Find out what this means +// TODO: Find out what this means. // * Create output function to write instructions to file with line formatting void emit_as_file(FILE * out_file, Instruction * instr_arr);