mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-08-19 04:40:04 +02:00
This commit is contained in:
@@ -157,7 +157,7 @@ Module::Module(char *filename, Identifier *ident, int doDocComment, int doHdrGen
|
|||||||
this->doDocComment = doDocComment;
|
this->doDocComment = doDocComment;
|
||||||
this->doHdrGen = doHdrGen;
|
this->doHdrGen = doHdrGen;
|
||||||
this->isRoot = false;
|
this->isRoot = false;
|
||||||
this->arrayfuncs = 0;
|
//this->arrayfuncs = 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -106,8 +106,8 @@ enum TY
|
|||||||
Ttuple,
|
Ttuple,
|
||||||
Tslice,
|
Tslice,
|
||||||
Treturn,
|
Treturn,
|
||||||
Tnull,
|
TMAX,
|
||||||
TMAX
|
Tnull
|
||||||
};
|
};
|
||||||
|
|
||||||
#define Tascii Tchar
|
#define Tascii Tchar
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ IrType::IrType(Type* dt, LLType* lt)
|
|||||||
{
|
{
|
||||||
assert(dt && "null D Type");
|
assert(dt && "null D Type");
|
||||||
assert(lt && "null LLVM Type");
|
assert(lt && "null LLVM Type");
|
||||||
#if !DMDV2
|
#if 0
|
||||||
// FIXME: For some reason the assert fails
|
// FIXME: For some reason the assert fails
|
||||||
assert(dt->irtype == NULL && "already has IrType");
|
assert(dt->irtype == NULL && "already has IrType");
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user