mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
Fixed 64bit problem in mtype.c with _adReverse runtime call, fixes #161 .
This commit is contained in:
@@ -1662,7 +1662,7 @@ Expression *TypeArray::dotExp(Scope *sc, Expression *e, Identifier *ident)
|
||||
arguments->push(e);
|
||||
|
||||
if (!dup)
|
||||
arguments->push(new IntegerExp(0, size, Type::tint32));
|
||||
arguments->push(new IntegerExp(0, size, Type::tsize_t));
|
||||
e = new CallExp(e->loc, ec, arguments);
|
||||
e->type = next->arrayOf();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user