diff --git a/dmd/mtype.h b/dmd/mtype.h index cf7b8d8e..d87e3880 100644 --- a/dmd/mtype.h +++ b/dmd/mtype.h @@ -389,6 +389,8 @@ struct TypePointer : Type void toCBuffer2(OutBuffer *buf, HdrGenState *hgs, int mod); MATCH implicitConvTo(Type *to); int isscalar(); + // LLVMDC: pointers are unsigned + int isunsigned() { return TRUE; }; Expression *defaultInit(Loc loc); int isZeroInit(); TypeInfoDeclaration *getTypeInfoDeclaration();