Merge pull request #466 from wilzbach/fix-unused_label

Fix AssertError on unknown label in unused_label
merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
This commit is contained in:
The Dlang Bot 2017-06-27 22:24:26 +02:00 committed by GitHub
commit 38c4d2d0eb
1 changed files with 24 additions and 2 deletions

View File

@ -143,8 +143,11 @@ private:
{
foreach (label; current.byValue())
{
assert(label.line != size_t.max && label.column != size_t.max);
if (!label.used)
if (label.line == size_t.max || label.column == size_t.max)
{
// TODO: handle unknown labels
}
else if (!label.used)
{
addErrorMessage(label.line, label.column, "dscanner.suspicious.unused_label",
"Label \"" ~ label.name ~ "\" is not used.");
@ -225,5 +228,24 @@ unittest
}
}c, sac);
// from std.math
assertAnalyzerWarnings(q{
real polyImpl() {
asm {
jecxz return_ST;
}
}
}c, sac);
// a label might be hard to find, e.g. in a mixin
assertAnalyzerWarnings(q{
real polyImpl() {
mixin("return_ST: return 1;");
asm {
jecxz return_ST;
}
}
}c, sac);
stderr.writeln("Unittest for UnusedLabelCheck passed.");
}