[svn r111] Fixed most problems with complex number support and added typeinfo for them.

Added typeinfo ti_C.
Did some changes to the way expressions that have both lvalue and rvalue LLVM values are handled.
This commit is contained in:
Tomas Lindquist Olsen
2007-11-20 00:02:35 +01:00
parent 2af443b045
commit adab52fad9
14 changed files with 442 additions and 127 deletions

View File

@@ -4,6 +4,6 @@ void main()
{
cfloat c1 = 1f + 0i;
cfloat c2 = 0f + 0i;
//c2 += 1f + 0i;
c2 += 1f + 0i;
//assert(c1 == c2);
}