IUCompilerCourse / Essentials-of-Compilation

A book about compiling Racket and Python to x86-64 assembly
1.27k stars 137 forks source link

fix incorrect order for the python SUB operator #132

Closed temyurchenko closed 1 year ago

temyurchenko commented 1 year ago

it used to be 'BinOp(Sub(), op1, op2)', but should have been 'BinOp(op1, Sub(), op2)'.

The rest of the changes are hanging or extra spaces.

temyurchenko commented 1 year ago

Some of the changes might be unnecessary, please tell me, if I should remove them.