view tangotests/vararg4.d @ 264:a9dae3da4e87 trunk

[svn r285] Fixed D -> bool LLVM helper for floating point values. Changed the way D-style varargs are passed, now each param should be aligned to size_t.sizeof.
author lindquist
date Sat, 14 Jun 2008 17:28:13 +0200
parents 0806379a5eca
children
line wrap: on
line source

module tangotests.vararg4;

extern(C) int printf(char*, ...);

struct S
{
    int i;
}

void func(...)
{
    S* sp = cast(S*)_argptr;
    assert(sp.i == 42);
}

void main()
{
    printf("1st:\n");
    {
    S s = S(42);
    func(s);
    }
    printf("ok\n");

    printf("2nd:\n");
    {
    func(S(42));
    }
    printf("ok\n");
}