annotate tangotests/debug7.d @ 291:068cb3c60afb trunk

[svn r312] Changed assert codegen to insert an unreachable terminator after the call to the assert function, which currently calls abort(). Changed array comparison runtime support to pass the array typeinfo instead of the element typeinfo. This allows a cleaner and faster implementation.
author lindquist
date Sat, 21 Jun 2008 21:16:26 +0200
parents 56199753e637
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
247
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
1 module tangotests.debug7;
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
2
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
3 int gi;
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
4
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
5 void main()
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
6 {
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
7 int* fail;
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
8 *fail = 0;
56199753e637 [svn r264] Fixed debug info for global variables.
lindquist
parents:
diff changeset
9 }