about summary refs log tree commit diff stats
path: root/047jump_label.cc
diff options
context:
space:
mode:
Diffstat (limited to '047jump_label.cc')
-rw-r--r--047jump_label.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/047jump_label.cc b/047jump_label.cc
index 3158233b..81a9d123 100644
--- a/047jump_label.cc
+++ b/047jump_label.cc
@@ -51,7 +51,7 @@ void replace_offset(reagent& x, /*const*/ map<string, index_t>& offset, const in
 //?   cerr << "BBB " << x.to_string() << '\n'; //? 1
   assert(!x.initialized);
 //?   cerr << "CCC " << x.to_string() << '\n'; //? 1
-  if (is_number(x.name)) return;  // non-labels will be handled like other number operands
+  if (is_integer(x.name)) return;  // non-labels will be handled like other number operands
 //?   cerr << "DDD " << x.to_string() << '\n'; //? 1
   if (offset.find(x.name) == offset.end())
     raise << "can't find label " << x.name << " in routine " << Recipe[r].name << '\n';