blob: 09b4a59c36276cc4a2fd05e53517d45e8332f8d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Intermediate code generation
- Put symbol table in the reader monad and it to the stack
or use the state monad for everything.
- Add errors handling to the monad stack.
# ELF generation
- Don't ignore relocations where the symbol is not defined in the symbol table.
Report an error about an undefined symbol.
|