[svn r329] Cleaned up a bunch of array code for handling special slice cases no

longer relevant.
This commit is contained in:
Tomas Lindquist Olsen 2008-06-28 05:57:16 +02:00
parent 86d299a641
commit ac3744a59d
5 changed files with 92 additions and 247 deletions

View file

@ -33,7 +33,7 @@ void DtoStaticArrayCopy(LLValue* dst, LLValue* src);
LLValue* DtoArrayEquals(TOK op, DValue* l, DValue* r);
LLValue* DtoArrayCompare(TOK op, DValue* l, DValue* r);
LLValue* DtoDynArrayIs(TOK op, LLValue* l, LLValue* r);
LLValue* DtoDynArrayIs(TOK op, DValue* l, DValue* r);
LLValue* DtoArrayCastLength(LLValue* len, const LLType* elemty, const LLType* newelemty);