File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1667,14 +1667,14 @@ LinkerObject const& Assembly::assembleEOF() const
1667
1667
1668
1668
for (auto i: referencedSubIds)
1669
1669
{
1670
- size_t const subAssemblyPostionInParentObject = ret.bytecode .size ();
1670
+ size_t const subAssemblyPositionInParentObject = ret.bytecode .size ();
1671
1671
auto const & subAssemblyLinkerObject = m_subs[i]->assemble ();
1672
1672
// Append subassembly bytecode to the parent assembly result bytecode
1673
1673
ret.bytecode += subAssemblyLinkerObject.bytecode ;
1674
1674
// Add subassembly link references to parent linker object.
1675
1675
// Offset accordingly to subassembly position in parent object bytecode
1676
1676
for (auto const & [subAssemblyLinkRefPosition, linkRef]: subAssemblyLinkerObject.linkReferences )
1677
- ret.linkReferences [subAssemblyPostionInParentObject + subAssemblyLinkRefPosition] = linkRef;
1677
+ ret.linkReferences [subAssemblyPositionInParentObject + subAssemblyLinkRefPosition] = linkRef;
1678
1678
}
1679
1679
1680
1680
// TODO: Fill functionDebugData for EOF. It probably should be handled for new code section in the loop above.
You can’t perform that action at this time.
0 commit comments