diff --git a/dmd2/apply.c b/dmd2/apply.c index 47f8844b..320b24a8 100644 --- a/dmd2/apply.c +++ b/dmd2/apply.c @@ -129,7 +129,7 @@ int StructLiteralExp::apply(fp_t fp, void *param) stageflags |= stageApply; int ret = condApply(elements, fp, param) || (*fp)(this, param); - stageflags = old; + stageflags = old; return ret; } diff --git a/dmd2/clone.c b/dmd2/clone.c index c465a553..03ea82c2 100644 --- a/dmd2/clone.c +++ b/dmd2/clone.c @@ -164,7 +164,7 @@ Lneed: * Note that s will be constructed onto the stack, and probably * copy-constructed in caller site. * - * If S has copy copy construction and/or destructor, + * If S has copy copy construction and/or destructor, * the body will make bit-wise object swap: * S __tmp = this; // bit copy * this = s; // bit copy diff --git a/dmd2/delegatize.c b/dmd2/delegatize.c index 4fb060aa..4d89d418 100644 --- a/dmd2/delegatize.c +++ b/dmd2/delegatize.c @@ -21,10 +21,6 @@ #include "scope.h" #include "init.h" -#if IN_LLVM -#include "init.h" -#endif - /******************************************** * Convert from expression to delegate that returns the expression, * i.e. convert: