Mercurial > projects > ldc
annotate tests/mini/alloca1.d @ 341:1bb99290e03a trunk
[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author | lindquist |
---|---|
date | Sun, 13 Jul 2008 02:51:19 +0200 |
parents | test/alloca1.d@d9d5d59873d8 |
children | 44f08170f4ef |
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 } |