diff --git a/compiler/src/dmd/arrayop.d b/compiler/src/dmd/arrayop.d index 16cbe620bc..272e751cb5 100644 --- a/compiler/src/dmd/arrayop.d +++ b/compiler/src/dmd/arrayop.d @@ -111,8 +111,8 @@ bool checkNonAssignmentArrayOp(Expression e, bool suggestion = false) * evaluation order as the actual array operations have no * side-effect. * References: - * https://github.com/dlang/druntime/blob/master/src/object.d#L3944 - * https://github.com/dlang/druntime/blob/master/src/core/internal/array/operations.d + * https://github.com/dlang/dmd/blob/cdfadf8a18f474e6a1b8352af2541efe3e3467cc/druntime/src/object.d#L4694 + * https://github.com/dlang/dmd/blob/master/druntime/src/core/internal/array/operations.d */ Expression arrayOp(BinExp e, Scope* sc) { diff --git a/compiler/src/dmd/backend/nteh.d b/compiler/src/dmd/backend/nteh.d index 2704a23c1b..7f49b44777 100644 --- a/compiler/src/dmd/backend/nteh.d +++ b/compiler/src/dmd/backend/nteh.d @@ -774,7 +774,7 @@ else const reg_t reg = CX; version (MARS) - // https://github.com/dlang/druntime/blob/master/src/rt/deh_win32.d#L924 + // https://github.com/dlang/dmd/blob/cdfadf8a18f474e6a1b8352af2541efe3e3467cc/druntime/src/rt/deh_win32.d#L934 const local_unwind = RTLSYM.D_LOCAL_UNWIND2; // __d_local_unwind2() else // dm/src/win32/ehsup.c diff --git a/druntime/README.md b/druntime/README.md index 2a48a71534..a53e5a99ea 100644 --- a/druntime/README.md +++ b/druntime/README.md @@ -1,13 +1,6 @@ DRuntime: Runtime Library for the D Programming Language ======================================================== -[![GitHub tag](https://img.shields.io/github/tag/dlang/druntime.svg?maxAge=86400)](https://github.com/dlang/druntime/releases) -[![Bugzilla Issues](https://img.shields.io/badge/issues-Bugzilla-green.svg)](https://issues.dlang.org/buglist.cgi?component=druntime&list_id=220148&product=D&resolution=---) -[![CircleCI](https://circleci.com/gh/dlang/druntime/tree/master.svg?style=svg)](https://circleci.com/gh/dlang/druntime/tree/master) -[![Buildkite](https://badge.buildkite.com/48ab4b9005c947aa3dbf0eeb4125391989c00c9545342b7b24.svg?branch=master)](https://buildkite.com/dlang/druntime) -[![Code coverage](https://img.shields.io/codecov/c/github/dlang/druntime.svg?maxAge=86400)](https://codecov.io/gh/dlang/druntime) -[![license](https://img.shields.io/github/license/dlang/druntime.svg)](https://github.com/dlang/druntime/blob/master/LICENSE.txt) - This is DRuntime. It is the low-level runtime library backing the D programming language. @@ -79,11 +72,6 @@ Issues To report a bug or look up known issues with the runtime library, please visit the [bug tracker](http://issues.dlang.org/). -Licensing ---------- - -See the [LICENSE.txt](https://github.com/dlang/druntime/blob/master/LICENSE.txt) file for licensing information. - Building -------- diff --git a/druntime/src/core/internal/dassert.d b/druntime/src/core/internal/dassert.d index 2c51b8641a..07486c216f 100644 --- a/druntime/src/core/internal/dassert.d +++ b/druntime/src/core/internal/dassert.d @@ -14,7 +14,7 @@ * * Copyright: D Language Foundation 2018 - 2020 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) - * Source: $(LINK2 https://github.com/dlang/druntime/blob/master/src/core/internal/dassert.d, _dassert.d) + * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/druntime/src/core/internal/dassert.d, _dassert.d) * Documentation: https://dlang.org/phobos/core_internal_dassert.html */ module core.internal.dassert; diff --git a/druntime/src/core/runtime.d b/druntime/src/core/runtime.d index 472d219f19..b180075bc7 100644 --- a/druntime/src/core/runtime.d +++ b/druntime/src/core/runtime.d @@ -4,7 +4,7 @@ * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors: Sean Kelly - * Source: $(LINK2 https://github.com/dlang/druntime/blob/master/src/core/runtime.d, _runtime.d) + * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/druntime/src/core/runtime.d, _runtime.d) * Documentation: https://dlang.org/phobos/core_runtime.html */ diff --git a/druntime/src/core/stdc/errno.d b/druntime/src/core/stdc/errno.d index 24b4138153..c992a5ff0d 100644 --- a/druntime/src/core/stdc/errno.d +++ b/druntime/src/core/stdc/errno.d @@ -8,7 +8,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Sean Kelly, Alex Rønne Petersen - * Source: https://github.com/dlang/druntime/blob/master/src/core/stdc/errno.d + * Source: https://github.com/dlang/dmd/blob/master/druntime/src/core/stdc/errno.d * Standards: ISO/IEC 9899:1999 (E) */ diff --git a/druntime/src/core/stdc/stdio.d b/druntime/src/core/stdc/stdio.d index 2e8381180d..5092532a83 100644 --- a/druntime/src/core/stdc/stdio.d +++ b/druntime/src/core/stdc/stdio.d @@ -9,7 +9,7 @@ * (See accompanying file LICENSE) * Authors: Sean Kelly, * Alex Rønne Petersen - * Source: https://github.com/dlang/druntime/blob/master/src/core/stdc/stdio.d + * Source: https://github.com/dlang/dmd/blob/master/druntime/src/core/stdc/stdio.d * Standards: ISO/IEC 9899:1999 (E) */ diff --git a/druntime/src/core/sys/posix/spawn.d b/druntime/src/core/sys/posix/spawn.d index cfa3a40057..206496261b 100644 --- a/druntime/src/core/sys/posix/spawn.d +++ b/druntime/src/core/sys/posix/spawn.d @@ -4,7 +4,7 @@ * Copyright: Copyright (C) 2018 by The D Language Foundation, All Rights Reserved * Authors: Petar Kirov * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) - * Source: $(LINK2 https://github.com/dlang/druntime/blob/master/src/core/sys/posix/spawn.d, _spawn.d) + * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/druntime/src/core/sys/posix/spawn.d, _spawn.d) * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ module core.sys.posix.spawn;