annotate tests/mini/bug18.d @ 978:6a32d2e18175

Fix a latent bug in the asm code. I think that technically, using "*m0" instead of "*0" allows LLVM to pick between using the same memory as output 0 and using a new memory location. (So far I haven't been able to construct a testcase that actually breaks because of this, though)
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 18 Feb 2009 03:38:12 +0100
parents 1bb99290e03a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
48
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
1 module bug18;
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
2
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
3 struct S {
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
4 int[9] i;
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
5 }
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
6
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
7 void main()
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
8 {
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
9 int[9] i;
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
10 auto s = S(i);
4d171915a77b [svn r52] fixed static arrays in struct literals
lindquist
parents:
diff changeset
11 }