about summary refs log tree commit diff stats
path: root/042new.cc
diff options
context:
space:
mode:
Diffstat (limited to '042new.cc')
-rw-r--r--042new.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/042new.cc b/042new.cc
index 68ae1949..8d90c3e7 100644
--- a/042new.cc
+++ b/042new.cc
@@ -43,6 +43,7 @@ if (inst.operation == Recipe_number["new"]) {
 }
 
 //:: Now implement the primitive recipe.
+//: todo: build 'new' in mu itself
 
 :(before "End Primitive Recipe Declarations")
 NEW,
@@ -68,7 +69,7 @@ case NEW: {
       size = size_of(type);
     }
   }
-  // compute the resulting location
+  // compute the region of memory to return
   // really crappy at the moment
   ensure_space(size);
   const index_t result = Current_routine->alloc;