1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

And should use the correct variable.

llvm-svn: 97193
This commit is contained in:
Bill Wendling 2010-02-26 00:24:25 +00:00
parent 30d82f42c4
commit 6c6c5e70e3

View File

@ -758,7 +758,7 @@ void DwarfException::EmitExceptionTable() {
if (OffsetSize != TTypeBaseOffsetSize) {
assert((int)OffsetSize - (int)TTypeBaseOffsetSize);
TTypeBaseOverflow = OffsetSize - TTypeBaseOffsetSize;
assert(SizeAlign >= TTypeBaseOffsetSize);
assert(SizeAlign >= TTypeBaseOverflow);
SizeAlign -= TTypeBaseOverflow;
}