# HG changeset patch # User thomask # Date 1111094968 0 # Node ID c1396281e0e84af257e63ad59a53efa4636f3332 # Parent 6f15c66181a57a571ed7fca1b3075d674c257b86 10 byte reals on the x86 align on 2 byte boundaries Walter 2005-03-17 mail:000c01c52b1d$0be37870$0200a8c0@colossus diff -r 6f15c66181a5 -r c1396281e0e8 run/real_03.d --- a/run/real_03.d Thu Mar 17 21:25:17 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -module dstress.run.real_03; - -int main(){ - real r; - - assert(real.alignof >= float.alignof); - assert(real.alignof >= real.sizeof); - assert(real.alignof == r.alignof); - - return 0; -}