diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-23 15:53:47 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-23 15:53:47 -0800 |
commit | 83266c767d1a785e864b4d6b5a8545a3b1aba2db (patch) | |
tree | 2f8555d7b5a33e11ee9fa21a8ac14ba0c50c3172 | |
parent | f86778e3a26b26674a2854c5842f969113c27c86 (diff) | |
download | mu-83266c767d1a785e864b4d6b5a8545a3b1aba2db.tar.gz |
2693
I noticed while teaching Ella that when mu encountered a missing recipe it failed to find *any* recipes after that point, leading to a lot of spurious errors. Now fixed.
-rw-r--r-- | 013update_operation.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/013update_operation.cc b/013update_operation.cc index 63f4586e..da18252d 100644 --- a/013update_operation.cc +++ b/013update_operation.cc @@ -14,7 +14,7 @@ void update_instruction_operations(recipe_ordinal r) { if (inst.is_label) continue; if (!contains_key(Recipe_ordinal, inst.name)) { raise_error << maybe(caller.name) << "instruction " << inst.name << " has no recipe\n" << end(); - return; + continue; } inst.operation = get(Recipe_ordinal, inst.name); // End Instruction Operation Checks |