view test/pt.d @ 94:61615fa85940 trunk

[svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca"). Added support for array .sort and .reverse properties. Fixed some bugs with pointer arithmetic. Disabled some DMD AST optimizations that was messing things up, destroying valuable information. Added a KDevelop project file, this is what I use for coding LLVMDC now :) Other minor stuff.
author lindquist
date Mon, 12 Nov 2007 06:32:46 +0100
parents 3d60e549b0c2
children d9d5d59873d8
line wrap: on
line source

int main()
{
    char[16] s = void;
    {
    char[] sd = s;
    {
    s[0] = 'a';
    s[1] = 'b';
    s[2] = 'c';
    }

    printf("%p %p\n", s.ptr, sd.ptr);
    printf("%c%c%c\n", s[0], s[1], s[2]);
    }

    char[16] s1 = void;
    char[16] s2 = void;
    char[] d1 = s1;

    {
        printf("%p\n%p\n%p\n", s1.ptr, s2.ptr, d1.ptr);
    }

    int[16] arr;

    return 0;
}