2008-08-31 08:45:33 -04:00
|
|
|
USING: accessors cpu.ppc.architecture cpu.ppc.intrinsics
|
|
|
|
cpu.architecture namespaces alien.c-types kernel system
|
|
|
|
combinators ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
{
|
2008-04-02 19:25:33 -04:00
|
|
|
{ [ os macosx? ] [
|
2008-08-31 08:45:33 -04:00
|
|
|
4 "longlong" c-type (>>align)
|
|
|
|
4 "ulonglong" c-type (>>align)
|
|
|
|
4 "double" c-type (>>align)
|
2007-09-20 18:09:08 -04:00
|
|
|
] }
|
2008-04-02 19:25:33 -04:00
|
|
|
{ [ os linux? ] [
|
2008-08-31 08:45:33 -04:00
|
|
|
t "longlong" c-type (>>stack-align?)
|
|
|
|
t "ulonglong" c-type (>>stack-align?)
|
2007-09-20 18:09:08 -04:00
|
|
|
] }
|
|
|
|
} cond
|