mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Perform correct actions numbers/sizes computation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36988 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
29c9cafe46
commit
22d5c37f32
@ -2958,13 +2958,11 @@ private:
|
||||
// Record the first action of the landing pad site.
|
||||
FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
|
||||
}
|
||||
|
||||
unsigned M = LandingPad.BeginLabels.size();
|
||||
for (unsigned j = 0; j!=M; ++j)
|
||||
Actions.push_back(FirstAction);
|
||||
Actions.push_back(FirstAction);
|
||||
|
||||
// Compute this sites contribution to size.
|
||||
SizeActions += SizeSiteActions*M;
|
||||
SizeActions += SizeSiteActions;
|
||||
unsigned M = LandingPad.BeginLabels.size();
|
||||
SizeSites += M*(sizeof(int32_t) + // Site start.
|
||||
sizeof(int32_t) + // Site length.
|
||||
sizeof(int32_t) + // Landing pad.
|
||||
|
Loading…
Reference in New Issue
Block a user