# HG changeset patch # User Tomas Lindquist Olsen # Date 1242314635 -7200 # Node ID b9f5f7c5db7374ea5c795cdfa6ccfa8241506e9d # Parent 8d501abecd240d2980cf617ce190e971aaf567c9 Oups, fix assertion condition in disabled code from rev [1351]. diff -r 8d501abecd24 -r b9f5f7c5db73 gen/llvmhelpers.cpp --- a/gen/llvmhelpers.cpp Thu May 14 17:20:17 2009 +0200 +++ b/gen/llvmhelpers.cpp Thu May 14 17:23:55 2009 +0200 @@ -1465,7 +1465,7 @@ if (alignsize != alignsize2) { - assert(alignsize > alignsize2 && "this is not good, the D and LLVM " + assert(alignsize2 > alignsize && "this is not good, the D and LLVM " "type alignments differ, but LLVM's is bigger! This will break " "the type mapping algorithms"); // don't try and align the offset, and let the mappers pad 100% manually