about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index b35d39d8..fea11a50 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -33,7 +33,6 @@ struct instruction {
   bool is_label;
   string label;  // only if is_label
   string name;  // only if !is_label
-  string old_name;  // before our automatic rewrite rules
   string original_string;  // for error messages
   recipe_ordinal operation;  // get(Recipe_ordinal, name)
   vector<reagent> ingredients;  // only if !is_label
@@ -266,7 +265,6 @@ void instruction::clear() {
   is_label=false;
   label.clear();
   name.clear();
-  old_name.clear();
   operation=IDLE;
   ingredients.clear();
   products.clear();