about summary refs log tree commit diff stats
path: root/043new.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-29 11:56:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-29 11:56:10 -0700
commitdd2e01e43e971c9325b343fa3e554097e829c508 (patch)
tree6c101a638967fc7120b9e421cf63837f1c9b6c86 /043new.cc
parentb2ec0969e9f7ef7c3267545efbed907c15084695 (diff)
downloadmu-dd2e01e43e971c9325b343fa3e554097e829c508.tar.gz
2311
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 4604a4fa..05c64009 100644
--- a/043new.cc
+++ b/043new.cc
@@ -28,7 +28,7 @@ trace(Primitive_recipe_depth, "new") << "routine allocated memory from " << allo
 
 :(before "End Mu Types Initialization")
 Type_ordinal["type"] = 0;
-:(after "Per-recipe Transforms")
+:(before "End transform_names(inst) Special-cases")
 // replace type names with type_ordinals
 if (inst.operation == Recipe_ordinal["new"]) {
   // End NEW Transform Special-cases