diff options
Diffstat (limited to 'subx')
-rw-r--r-- | subx/026labels.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/026labels.cc b/subx/026labels.cc index ece513aa..33ab8a2d 100644 --- a/subx/026labels.cc +++ b/subx/026labels.cc @@ -49,7 +49,7 @@ void compute_addresses_for_labels(const segment& code, map<string, uint32_t> add } else { if (contains_any_operand_metadata(curr)) - raise << "'" << to_string(inst) << "': mixing label definition with ':' in operand\n" << end(); + raise << "'" << to_string(inst) << "': label definition (':') not allowed in operand\n" << end(); if (j == 0) { string label = curr.data.substr(0, SIZE(curr.data)-1); put(address, label, current_byte); |