aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/vmix.c
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code/vmix.c')
-rw-r--r--mps/code/vmix.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/mps/code/vmix.c b/mps/code/vmix.c
index 71f6354a32c..f5ba622f7c9 100644
--- a/mps/code/vmix.c
+++ b/mps/code/vmix.c
@@ -164,7 +164,9 @@ Res VMCreate(VM *vmReturn, Size size)
164 DIAG_SINGLEF(( 164 DIAG_SINGLEF((
165 "VM_ix_Create_ok", 165 "VM_ix_Create_ok",
166 "[$W..<$W>..$W)", 166 "[$W..<$W>..$W)",
167 vm->base, (char*)vm->limit - (char*)vm->base, vm->limit, 167 (WriteFW)vm->base,
168 (WriteFW)AddrOffset(vm->base, vm->limit),
169 (WriteFW)vm->limit,
168 NULL )); 170 NULL ));
169 171
170 *vmReturn = vm; 172 *vmReturn = vm;
@@ -188,7 +190,9 @@ void VMDestroy(VM vm)
188 DIAG_SINGLEF(( 190 DIAG_SINGLEF((
189 "VM_ix_Destroy", 191 "VM_ix_Destroy",
190 "[$W..<$W>..$W)", 192 "[$W..<$W>..$W)",
191 vm->base, (char*)vm->limit - (char*)vm->base, vm->limit, 193 (WriteFW)vm->base,
194 (WriteFW)AddrOffset(vm->base, vm->limit),
195 (WriteFW)vm->limit,
192 NULL )); 196 NULL ));
193 197
194 /* This appears to be pretty pointless, since the descriptor */ 198 /* This appears to be pretty pointless, since the descriptor */