Changes between Version 4 and Version 5 of Commentary/Compiler/StackAreas
- Timestamp:
- 05/19/08 03:05:42 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Commentary/Compiler/StackAreas
v4 v5 34 34 35 35 sp = stack(L, 1); // Make room on the stack for the arguments 36 m[stack(L, 1)] = x; // copy the argument37 m[stack(L, 0)] = L; // copy the return address36 m[stack(L, 1)] = L; // copy the return address 37 m[stack(L, 0)] = x; // copy the argument 38 38 call g(); 39 39
