about summary refs log tree commit diff stats
path: root/subx/011run.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/011run.cc')
-rw-r--r--subx/011run.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/subx/011run.cc b/subx/011run.cc
index f210f141..9248ff84 100644
--- a/subx/011run.cc
+++ b/subx/011run.cc
@@ -217,9 +217,7 @@ void load(const program& p) {
     raise << "no code to run\n" << end();
     return;
   }
-  // You should keep your segments disjoint.
-  // Tests sometimes don't, but it should still be an error to use the
-  // overlapping regions.
+  // Ensure segments are disjoint.
   set<uint32_t> overlap;
   for (int i = 0;   i < SIZE(p.segments);  ++i) {
     const segment& seg = p.segments.at(i);