annotate tangotests/u.d @ 217:0806379a5eca trunk

[svn r233] Added: -oq command line option for writing fully qualified object names. Added: started support for x86 80bit floating point. Changed: aggregates passed by value now use the llvm 'byval' parameter attribute, also lays ground work for using other attributes. Changed: eliminated a lot more std::vectorS, these showed up pretty much at the top when profiling! Changed: performed other misc. cleanups. Changed: halt expression now call the new llvm trap intrinsic instead of an assert(0). Changed: dstress suite now passes -O0 by default, this only eliminates unreferenced globals, which speeds up linking quite a bit.
author lindquist
date Thu, 05 Jun 2008 06:38:36 +0200
parents ffcc9a2f3d9d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
1 import tango.io.Console;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
2 void main()
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
3 {
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
4 Cout("getting name std").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
5 Cerr("getting name err").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
6 auto s = Cin.get();
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
7 Cout("putting name").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
8 Cout (s).newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
9 }