Skip to content

Commit 9451533

Browse files
committed
comment out methods
1 parent 452d1d4 commit 9451533

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

compiler.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def select_stmt(self, s: stmt) -> List[instr]:
4141
# YOUR CODE HERE
4242
pass
4343

44-
def select_instructions(self, p: Module) -> X86Program:
45-
# YOUR CODE HERE
46-
pass
44+
# def select_instructions(self, p: Module) -> X86Program:
45+
# # YOUR CODE HERE
46+
# pass
4747

4848
############################################################################
4949
# Assign Homes
@@ -63,9 +63,9 @@ def assign_homes_instrs(self, ss: List[instr],
6363
# YOUR CODE HERE
6464
pass
6565

66-
def assign_homes(self, p: X86Program) -> X86Program:
67-
# YOUR CODE HERE
68-
pass
66+
# def assign_homes(self, p: X86Program) -> X86Program:
67+
# # YOUR CODE HERE
68+
# pass
6969

7070
############################################################################
7171
# Patch Instructions
@@ -79,15 +79,15 @@ def patch_instrs(self, ss: List[instr]) -> List[instr]:
7979
# YOUR CODE HERE
8080
pass
8181

82-
def patch_instructions(self, p: X86Program) -> X86Program:
83-
# YOUR CODE HERE
84-
pass
82+
# def patch_instructions(self, p: X86Program) -> X86Program:
83+
# # YOUR CODE HERE
84+
# pass
8585

8686
############################################################################
8787
# Prelude & Conclusion
8888
############################################################################
8989

90-
def prelude_and_conclusion(self, p: X86Program) -> X86Program:
91-
# YOUR CODE HERE
92-
pass
90+
# def prelude_and_conclusion(self, p: X86Program) -> X86Program:
91+
# # YOUR CODE HERE
92+
# pass
9393

0 commit comments

Comments
 (0)