about summary refs log tree commit diff stats
path: root/041jump_target.cc
diff options
context:
space:
mode:
Diffstat (limited to '041jump_target.cc')
-rw-r--r--041jump_target.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/041jump_target.cc b/041jump_target.cc
index 0155ae89..00e9fc39 100644
--- a/041jump_target.cc
+++ b/041jump_target.cc
@@ -64,7 +64,7 @@ void replace_offset(reagent& x, /*const*/ map<string, long long int>& offset, co
     x.set_value(0);  // no jump by default
     return;
   }
-  assert(!x.initialized);
+  if (x.initialized) return;
   if (is_integer(x.name)) return;  // non-labels will be handled like other number operands
   if (!is_jump_target(x.name)) {
     raise_error << maybe(get(Recipe, r).name) << "can't jump to label " << x.name << '\n' << end();