comparison gen/abi-x86-64.cpp @ 1048:f9333daa1bf5

Fix a typo
author Frits van Bommel <fvbommel wxs.nl>
date Fri, 06 Mar 2009 17:00:34 +0100
parents 6bb04dbee21f
children afe271b0e271
comparison
equal deleted inserted replaced
1047:6bb04dbee21f 1048:f9333daa1bf5
614 // more easily break it up? 614 // more easily break it up?
615 // Note: this won't be necessary if the following LLVM bug gets fixed: 615 // Note: this won't be necessary if the following LLVM bug gets fixed:
616 // http://llvm.org/bugs/show_bug.cgi?id=3741 616 // http://llvm.org/bugs/show_bug.cgi?id=3741
617 return true; 617 return true;
618 } else { 618 } else {
619 assert(t == Type::tfloat80 || t == Type::timaginary80 || t->size() < 8 619 assert(t == Type::tfloat80 || t == Type::timaginary80 || t->size() <= 8
620 && "What other big types are there?"); // other than static arrays... 620 && "What other big types are there?"); // other than static arrays...
621 // In any case, they shouldn't be represented as structs in LLVM: 621 // In any case, they shouldn't be represented as structs in LLVM:
622 assert(!isaStruct(DtoType(t))); 622 assert(!isaStruct(DtoType(t)));
623 } 623 }
624 } 624 }