# HG changeset patch # User Frits van Bommel # Date 1236355234 -3600 # Node ID f9333daa1bf523748042e681af980321bd8d353a # Parent 6bb04dbee21ff5c038b22a329417da62541f2deb Fix a typo diff -r 6bb04dbee21f -r f9333daa1bf5 gen/abi-x86-64.cpp --- a/gen/abi-x86-64.cpp Fri Mar 06 16:00:47 2009 +0100 +++ b/gen/abi-x86-64.cpp Fri Mar 06 17:00:34 2009 +0100 @@ -616,7 +616,7 @@ // http://llvm.org/bugs/show_bug.cgi?id=3741 return true; } else { - assert(t == Type::tfloat80 || t == Type::timaginary80 || t->size() < 8 + assert(t == Type::tfloat80 || t == Type::timaginary80 || t->size() <= 8 && "What other big types are there?"); // other than static arrays... // In any case, they shouldn't be represented as structs in LLVM: assert(!isaStruct(DtoType(t)));