We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a99053f commit aeeb730Copy full SHA for aeeb730
optvm/src/main/java/com/compilerprogramming/ezlang/compiler/Register.java
@@ -78,13 +78,11 @@ public String name() {
78
}
79
80
/**
81
- * The nonSSAID is valid as a frame slot prior to SSA conversion,
82
- * and following register assignment.
83
- * During SSA form this is not valid for registers that are instances of SSARegister.
+ * The ID shared by all versions of a Register.
+ * @see SSARegister
84
*/
85
public int nonSSAId() {
86
- //assert frameSlot >= 0; // assert inteferes with verbose display
87
- return frameSlot;
+ return id;
88
89
public void updateSlot(int slot) {
90
this.frameSlot = slot;
0 commit comments