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);