diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-10-01 16:33:34 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-10-01 16:33:34 -0700 |
commit | 16386f766ec1e347db8a19ebfd9cedaa9b281a5f (patch) | |
tree | 6e8c61ece47a340d4339e096d1abbbad237db605 | |
parent | 96bb317f32d4e56af526076ebc472ec5ba5b3108 (diff) | |
download | mu-16386f766ec1e347db8a19ebfd9cedaa9b281a5f.tar.gz |
2231
-rw-r--r-- | 021check_instruction.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/021check_instruction.cc b/021check_instruction.cc index 1ef58dfa..2fd93f7b 100644 --- a/021check_instruction.cc +++ b/021check_instruction.cc @@ -16,6 +16,7 @@ void check_instruction(const recipe_ordinal r) { map<string, vector<type_ordinal> > metadata; for (long long int i = 0; i < SIZE(Recipe[r].steps); ++i) { instruction& inst = Recipe[r].steps.at(i); + if (inst.is_label) continue; switch (inst.operation) { // Primitive Recipe Checks case COPY: { |