annotate tests/mini/compile_bug26.d @ 1138:4c8bb03e4fbc

Update DtoConstFP() to be correct after LLVM r67562, which changed the way the APFloat constructor expects its i80 APInts to be formatted. (They're now actually consistent with the x87 format)
author Frits van Bommel <fvbommel wxs.nl>
date Tue, 24 Mar 2009 15:24:59 +0100
parents fc098100ecc7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
52
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
1 module bug26;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
2
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
3 extern int i;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
4
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
5 void main()
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
6 {
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
7 int j = i;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
8 }