about summary refs log tree commit diff stats
path: root/subx/010---vm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/010---vm.cc')
-rw-r--r--subx/010---vm.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/subx/010---vm.cc b/subx/010---vm.cc
index b54dd9d5..82a7d2f5 100644
--- a/subx/010---vm.cc
+++ b/subx/010---vm.cc
@@ -203,7 +203,6 @@ inline uint8_t* mem_addr_u8(uint32_t addr) {
   if (result == NULL) {
     if (Trace_file) Trace_file.flush();
     raise << "Tried to access uninitialized memory at address 0x" << HEXWORD << addr << '\n' << end();
-    DUMP("");
     exit(1);
   }
   return result;
@@ -224,7 +223,6 @@ inline uint32_t* mem_addr_u32(uint32_t addr) {
     if (Trace_file) Trace_file.flush();
     raise << "Tried to access uninitialized memory at address 0x" << HEXWORD << addr << '\n' << end();
     raise << "The entire 4-byte word should be initialized and lie in a single segment.\n" << end();
-    DUMP("");
     exit(1);
   }
   return result;