Skip to content

Commit df53cd3

Browse files
committed
misc
1 parent 572ff41 commit df53cd3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/engine/x86-64/X86_64StackCompression.v3

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ component X86_64Compression {
4848
}
4949

5050
def decompress(to: X86_64Stack, from: X86_64CompressedStack) {
51-
if (from.numFrames() == 0) return; // TODO[sc]: empty stack behavior?
51+
if (from.numFrames() == 0) return; // TODO: empty stack behavior?
5252
if (Debug.compression) Trace.OUT.put1(
5353
"Decompressing into X86-64Stack @ 0x%x", Pointer.atObject(to) - Pointer.NULL
5454
).ln();
@@ -109,7 +109,7 @@ component X86_64Compression {
109109
}
110110

111111
// XXX: merge with functionality in FrameAccessor
112-
// TODO[sc]: forgeRange
112+
// TODO: forgeRange
113113
def setNewProgramLocation(sp: Pointer, func: FuncDecl, pc: int, stp: int) {
114114
var code = func.cur_bytecode;
115115
(sp + X86_64InterpreterFrame.func_decl.offset) .store<FuncDecl>(func);

0 commit comments

Comments
 (0)