mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
A few fixes for 64bit
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
IrFuncTyArg::IrFuncTyArg(Type* t, bool bref, unsigned a)
|
||||
{
|
||||
type = t;
|
||||
ltype = bref ? DtoType(t->pointerTo()) : DtoType(t);
|
||||
ltype = t != Type::tvoid && bref ? DtoType(t->pointerTo()) : DtoType(t);
|
||||
attrs = a;
|
||||
byref = bref;
|
||||
rewrite = NULL;
|
||||
|
||||
Reference in New Issue
Block a user