diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-02-26 00:22:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-02-26 00:22:42 +0000 |
commit | 47c32692363d28a0c29242da530cc75ea034b32d (patch) | |
tree | 5695807c2cc0ce07b31c26366f6a5b98ebc82f10 /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | 07130c35d5beb5780422e98cc06bfd3aa7abd04b (diff) | |
download | bcm5719-llvm-47c32692363d28a0c29242da530cc75ea034b32d.tar.gz bcm5719-llvm-47c32692363d28a0c29242da530cc75ea034b32d.zip |
Got assertion check backwards.
llvm-svn: 97192
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 7efa6429e10..bdb1c528974 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -758,7 +758,7 @@ void DwarfException::EmitExceptionTable() { if (OffsetSize != TTypeBaseOffsetSize) { assert((int)OffsetSize - (int)TTypeBaseOffsetSize); TTypeBaseOverflow = OffsetSize - TTypeBaseOffsetSize; - assert(TTypeBaseOffsetSize >= SizeAlign); + assert(SizeAlign >= TTypeBaseOffsetSize); SizeAlign -= TTypeBaseOverflow; } |