Skip to content
Snippets Groups Projects
Commit dc20fb1b authored by John Romein's avatar John Romein
Browse files

bug 225:

small simplification.
parent 31a74d9e
No related branches found
No related tags found
No related merge requests found
...@@ -150,7 +150,7 @@ void WH_InputSection::limitFlagsLength(SparseSet<unsigned> &flags) ...@@ -150,7 +150,7 @@ void WH_InputSection::limitFlagsLength(SparseSet<unsigned> &flags)
const SparseSet<unsigned>::Ranges &ranges = flags.getRanges(); const SparseSet<unsigned>::Ranges &ranges = flags.getRanges();
if (ranges.size() > 16) if (ranges.size() > 16)
flags.include(ranges[15].begin, ranges[ranges.size() - 1].end); flags.include(ranges[15].begin, ranges.back().end);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment