about summary refs log tree commit diff stats
path: root/021check_instruction.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-01 16:33:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-01 16:33:34 -0700
commit16386f766ec1e347db8a19ebfd9cedaa9b281a5f (patch)
tree6e8c61ece47a340d4339e096d1abbbad237db605 /021check_instruction.cc
parent96bb317f32d4e56af526076ebc472ec5ba5b3108 (diff)
downloadmu-16386f766ec1e347db8a19ebfd9cedaa9b281a5f.tar.gz
2231
Diffstat (limited to '021check_instruction.cc')
-rw-r--r--021check_instruction.cc1
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: {