annotate nocompile/bounds_checking_04.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 7300d411e85c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
450
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
1 // $HeadURL$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
2 // $Date$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
3 // $Author$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
4
1382
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
5 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1019
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
6 // @desc@ [Issue 1019] regression: Error: array index X is out of bounds [0 .. Y]
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
7
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
8 // __DSTRESS_ELINE__ 15
450
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
9
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
10 module dstress.nocompile.bounds_checking_04;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
11
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
12 int main(){
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
13 byte[5] a;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
14 const int i=-1;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
15 a[i]=3;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
16
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
17 return 0;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
18 }