annotate tests/mini/memory1.d @ 445:cc40db549aea

Changed the handling of variadic intrinsics a bit. Removed the -fp80 option and made real be 80bit floats on X86, this is what the D spec really says it should be and fixes a bunch of issues. Changed the handling of parameter attributes to a bit more generalized approach. Added sext/zext attributes for byte/short/ubyte/ushort parameters, fixes #60 . Parameter attribs now properly set for intrinsic calls if necessary. Made the tango.math.Math patch less intrusive. Fixed/added some mini tests.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 01 Aug 2008 17:59:58 +0200
parents 1bb99290e03a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
1 module memory1;
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
2
133
44a95ac7368a [svn r137] Many fixes towards tango.io.Console working, but not quite there yet...
lindquist
parents: 34
diff changeset
3 extern(C) int printf(char*,...);
44a95ac7368a [svn r137] Many fixes towards tango.io.Console working, but not quite there yet...
lindquist
parents: 34
diff changeset
4
34
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
5 void main()
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
6 {
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
7 auto a = new int[16];
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
8 {printf("array.length = %u\n", a.length);}
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
9 {a.length = a.length + 1;}
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
10 {printf("array.length = %u\n", a.length);}
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
11 {assert(a.length == 17);}
4648206ca213 [svn r38] * resizing dynamic arrays support
lindquist
parents:
diff changeset
12 }