Fix typo.

This commit is contained in:
Daniel Kirchner 2022-12-21 16:14:07 +01:00
parent 935aa09feb
commit 940cfa466d

View File

@ -906,7 +906,7 @@ LinkerObject const& Assembly::assemble() const
// TODO: remove this when transitioning to unified spec headers // TODO: remove this when transitioning to unified spec headers
if (eof && bytesRequiredForDataAndSubsUpperBound > 0 && ret.bytecode.size() == dataStart) if (eof && bytesRequiredForDataAndSubsUpperBound > 0 && ret.bytecode.size() == dataStart)
{ {
// We have commited to a data section, but not actually needed it, so create a fake one. // We have committed to a data section, but not actually needed it, so create a fake one.
ret.bytecode.push_back(0); ret.bytecode.push_back(0);
} }