Convert local offset variable to CharUnits in AddVCallOffsets. No change in

functionality intended.

llvm-svn: 128522
This commit is contained in:
Ken Dyck 2011-03-30 01:21:33 +00:00
parent 078f3e6905
commit 075de167f8
1 changed files with 4 additions and 4 deletions

View File

@ -876,7 +876,7 @@ void VCallAndVBaseOffsetBuilder::AddVCallOffsets(BaseSubobject Base,
if (!VCallOffsets.AddVCallOffset(MD, OffsetOffset))
continue;
int64_t Offset = 0;
CharUnits Offset = CharUnits::Zero();
if (Overriders) {
// Get the final overrider.
@ -885,11 +885,11 @@ void VCallAndVBaseOffsetBuilder::AddVCallOffsets(BaseSubobject Base,
/// The vcall offset is the offset from the virtual base to the object
/// where the function was overridden.
// FIXME: We should not use / 8 here.
Offset = (int64_t)(Context.toBits(Overrider.Offset) - VBaseOffset) / 8;
Offset = Overrider.Offset - Context.toCharUnitsFromBits(VBaseOffset);
}
Components.push_back(VTableComponent::MakeVCallOffset(Offset));
Components.push_back(
VTableComponent::MakeVCallOffset(Offset.getQuantity()));
}
// And iterate over all non-virtual bases (ignoring the primary base).