A simple compiler to translate C language code

Job ID: 32129769

Budget: $30 – $250 USD

As described above, your task is to change calc3b.c into calc3i.c that instead of emitting the pseudo assembly code emits actual x86-64 assembler instructions (that uses the x86-64 stack). Your compiler should emit code that handles 64 bit signed integers.
Since the provided compiler only produces the instructions required to translate the calc language code, it does not by itself create an assembly program, which can be compiled into an executable. This is the case, since it does not define data and text segments as well as the symbol table, which you need in order to handle variables. Furthermore, the compiler also does not call the exit function/system call to terminate the produced program.