about summary refs log tree commit diff stats
path: root/subx/011run.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-01 11:09:07 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-01 11:09:07 -0700
commitca00f6b97c52262b39c28cccb76b52e059553f13 (patch)
tree3c6e1ea3e36c849a344eac03a468b3e853241bb3 /subx/011run.cc
parent75e30d2faa3480ae8810856d6527089ba88346a5 (diff)
downloadmu-ca00f6b97c52262b39c28cccb76b52e059553f13.tar.gz
4634
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);