From a0d3cac4e69101669681a4d8af6dc3e8bd2c9a6a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 15 Sep 2019 00:01:26 -0700 Subject: 5659 --- html/035labels.cc.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/035labels.cc.html') diff --git a/html/035labels.cc.html b/html/035labels.cc.html index cb79e288..0ce6f43f 100644 --- a/html/035labels.cc.html +++ b/html/035labels.cc.html @@ -192,7 +192,7 @@ if ('onhashchange' in window) { 133 for (int i = 0; i < SIZE(code.lines); ++i) { 134 const line& inst = code.lines.at(i); 135 if (Source_lines_file.is_open() && !inst.original.empty() && /*not a label*/ *inst.words.at(0).data.rbegin() != ':') -136 Source_lines_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << inst.original << '\n'; +136 Source_lines_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << inst.original << '\n'; 137 for (int j = 0; j < SIZE(inst.words); ++j) { 138 const word& curr = inst.words.at(j); 139 // hack: if we have any operand metadata left after previous transforms, @@ -224,7 +224,7 @@ if ('onhashchange' in window) { 165 if (j > 0) 166 raise << "'" << to_string(inst) << "': labels can only be the first word in a line.\n" << end(); 167 if (Labels_file.is_open()) -168 Labels_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << label << '\n'; +168 Labels_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << label << '\n'; 169 if (contains_key(byte_index, label) && label != "Entry") { 170 raise << "duplicate label '" << label << "'\n" << end(); 171 return; -- cgit 1.4.1-2-gfad0