We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7afc055 commit 8ad39cfCopy full SHA for 8ad39cf
1 file changed
src/main/java/ko/carbonel/syntax/grammar/generator/output/TinyRustMIPSCodeGenerator.java
@@ -25,15 +25,17 @@
25
26
/**
27
* Stack Frame Format:
28
- * main| local vars < Base FP points to first local 00, first local var
+ * <pre>
29
+ * main| local vars < Base FP points to first local 00, first local var
30
* main| [maybe data from expression]
31
* ...
32
* call| Old $fp
33
* call| $ra
34
* call| self
35
* call| args
- * call| local vars < new FP points to first local var
36
+ * call| local vars < new FP points to first local var
37
* call| [maybe data from expression]
38
+ * </pre>
39
*/
40
public class TinyRustMIPSCodeGenerator extends MIPSCodeGenerator<TinyRustSymbolTable> {
41
public static final String METHOD_MAIN = "method_main";
0 commit comments