Removed fix from rev [1331] since rev [1333] adds a more general fix that catches more cases!

This commit is contained in:
Tomas Lindquist Olsen
2009-05-10 15:50:51 +02:00
parent 813c650517
commit 4f59c0cb7b

View File

@@ -1942,13 +1942,6 @@ Expression *CallExp::interpret(InterState *istate)
if (fd->ident == Id::adDup && arguments && arguments->dim == 2)
{
e = (Expression *)arguments->data[1];
#if IN_LLVM
// in LDC we repaint the array argument to void[], skip past that
// or CTFE will fail!
assert(e->op == TOKcast);
CastExp* ce = (CastExp*)e;
e = ce->e1;
#endif
e = e->interpret(istate);
if (e != EXP_CANT_INTERPRET)
{