mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 17:11:44 +03:00
A few fixes for 64bit
This commit is contained in:
parent
aa5dfdfd4d
commit
e921998d75
11 changed files with 45 additions and 25 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue