about summary refs log tree commit diff stats
path: root/043new.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-04 23:39:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-04 23:39:36 -0800
commit54275c64e2404612bf8754238bf71ae805f4022e (patch)
tree1cd467208d41481c494d0f46d476d1e01b1eed4a /043new.cc
parent5a4810855d34ce74b787d70383a712eef9e053f4 (diff)
downloadmu-54275c64e2404612bf8754238bf71ae805f4022e.tar.gz
2359
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/043new.cc b/043new.cc
index e1cf3e68..13240cfe 100644
--- a/043new.cc
+++ b/043new.cc
@@ -48,7 +48,7 @@ case NEW: {
   break;
 }
 
-//:: translate 'new' to 'alloc' instructions that take a size instead of a type
+//:: translate 'new' to 'allocate' instructions that take a size instead of a type
 :(after "Transform.push_back(check_instruction)" following "Transform.push_back(check_invalid_types)")  // so that all types are defined
 Transform.push_back(transform_new_to_allocate);