Mercurial > projects > ldc
annotate test/alloca1.d @ 270:d9d5d59873d8 trunk
[svn r291] Fixed a bunch of the old Phobos tests to work with Tango.
Branch statements now emit a new block after it.
Fixed the _adSort runtime function had a bad signature.
Added a missing dot prefix on compiler generated string tables for string switch.
Fixed, PTRSIZE seems like it was wrong on 64bit, now it definitely gets set properly.
author | lindquist |
---|---|
date | Mon, 16 Jun 2008 16:01:19 +0200 |
parents | 61615fa85940 |
children |
rev | line source |
---|---|
lindquist@94 | 1 module alloca1; |
lindquist@94 | 2 |
lindquist@94 | 3 pragma(LLVM_internal, "alloca") |
lindquist@94 | 4 void* alloca(uint); |
lindquist@94 | 5 |
lindquist@270 | 6 extern(C) int printf(char*, ...); |
lindquist@270 | 7 |
lindquist@94 | 8 void main() |
lindquist@94 | 9 { |
lindquist@94 | 10 int n = 16; |
lindquist@94 | 11 int* p = cast(int*)alloca(n*int.sizeof); |
lindquist@94 | 12 int[] a = p[0..n]; |
lindquist@94 | 13 a[] = 0; |
lindquist@94 | 14 foreach(i,v; a) { |
lindquist@94 | 15 printf("a[%2d] = %d\n", i, v); |
lindquist@94 | 16 } |
lindquist@94 | 17 } |