Showing with 15 additions and 15 deletions.
  1. +2 −2 posix.mak
  2. +1 −1 src/core/runtime.d
  3. +6 −6 src/core/sys/posix/signal.d
  4. +2 −2 src/rt/util/utf.d
  5. +2 −2 win32.mak
  6. +2 −2 win64.mak
4 changes: 2 additions & 2 deletions posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ else
DOTLIB:=.a
endif

DFLAGS=$(MODEL_FLAG) -O -release -dip25 -inline -w -Isrc -Iimport $(PIC)
UDFLAGS=$(MODEL_FLAG) -O -release -dip25 -w -Isrc -Iimport $(PIC)
DFLAGS=$(MODEL_FLAG) -O -release -inline -w -Isrc -Iimport $(PIC)
UDFLAGS=$(MODEL_FLAG) -O -release -w -Isrc -Iimport $(PIC)
DDOCFLAGS=-c -w -o- -Isrc -Iimport -version=CoreDdoc

CFLAGS=$(MODEL_FLAG) -O $(PIC)
Expand Down
2 changes: 1 addition & 1 deletion src/core/runtime.d
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ Throwable.TraceInfo defaultTraceHandler( void* ptr = null )
void*[MAXFRAMES] callstack = void;

private:
const(char)[] fixline( const(char)[] buf, return ref char[4096] fixbuf ) const
const(char)[] fixline( const(char)[] buf, ref char[4096] fixbuf ) const
{
size_t symBeg, symEnd;
version( OSX )
Expand Down
12 changes: 6 additions & 6 deletions src/core/sys/posix/signal.d
Original file line number Diff line number Diff line change
Expand Up @@ -664,12 +664,12 @@ version( linux )
} _sifields_t _sifields;

nothrow @nogc:
@property ref pid_t si_pid() return { return _sifields._kill.si_pid; }
@property ref uid_t si_uid() return { return _sifields._kill.si_uid; }
@property ref void* si_addr() return { return _sifields._sigfault.si_addr; }
@property ref int si_status() return { return _sifields._sigchld.si_status; }
@property ref c_long si_band() return { return _sifields._sigpoll.si_band; }
@property ref sigval si_value() return { return _sifields._rt.si_sigval; }
@property ref pid_t si_pid() { return _sifields._kill.si_pid; }
@property ref uid_t si_uid() { return _sifields._kill.si_uid; }
@property ref void* si_addr() { return _sifields._sigfault.si_addr; }
@property ref int si_status() { return _sifields._sigchld.si_status; }
@property ref c_long si_band() { return _sifields._sigpoll.si_band; }
@property ref sigval si_value() { return _sifields._rt.si_sigval; }
}

enum
Expand Down
4 changes: 2 additions & 2 deletions src/rt/util/utf.d
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ void validate(S)(in S s)

/* =================== Conversion to UTF8 ======================= */

char[] toUTF8(return out char[4] buf, dchar c)
char[] toUTF8(out char[4] buf, dchar c)
in
{
assert(isValidDchar(c));
Expand Down Expand Up @@ -682,7 +682,7 @@ string toUTF8(in dchar[] s)

/* =================== Conversion to UTF16 ======================= */

wchar[] toUTF16(return out wchar[2] buf, dchar c)
wchar[] toUTF16(out wchar[2] buf, dchar c)
in
{
assert(isValidDchar(c));
Expand Down
4 changes: 2 additions & 2 deletions win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ CC=dmc
DOCDIR=doc
IMPDIR=import

DFLAGS=-m$(MODEL) -O -release -dip25 -inline -w -Isrc -Iimport
UDFLAGS=-m$(MODEL) -O -release -dip25 -w -Isrc -Iimport
DFLAGS=-m$(MODEL) -O -release -inline -w -Isrc -Iimport
UDFLAGS=-m$(MODEL) -O -release -w -Isrc -Iimport
DDOCFLAGS=-c -w -o- -Isrc -Iimport -version=CoreDdoc

CFLAGS=
Expand Down
4 changes: 2 additions & 2 deletions win64.mak
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ CP=cp
DOCDIR=doc
IMPDIR=import

DFLAGS=-m$(MODEL) -O -release -dip25 -inline -w -Isrc -Iimport
UDFLAGS=-m$(MODEL) -O -release -dip25 -w -Isrc -Iimport
DFLAGS=-m$(MODEL) -O -release -inline -w -Isrc -Iimport
UDFLAGS=-m$(MODEL) -O -release -w -Isrc -Iimport
DDOCFLAGS=-c -w -o- -Isrc -Iimport -version=CoreDdoc

#CFLAGS=/O2 /I"$(VCDIR)"\INCLUDE /I"$(SDKDIR)"\Include
Expand Down