Skip to content

Commit dd0ff1e

Browse files
authored
Merge pull request #4737 from kinke/merge_stable
Merge upstream stable
2 parents b731db4 + 68db4b9 commit dd0ff1e

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# LDC master
22

33
#### Big news
4-
- Frontend, druntime and Phobos are at version [2.110.0](https://dlang.org/changelog/2.110.0.html). (#4707)
4+
- Frontend, druntime and Phobos are at version [2.110.0](https://dlang.org/changelog/2.110.0.html). (#4707, #4737)
55
- LLVM for prebuilt packages bumped to v18.1.8 (incl. macOS arm64). (#4712)
66
- Android: NDK for prebuilt package bumped from r26d to r27. (#4711)
77
- ldc2.conf: %%ldcconfigpath%% placeholder added - specifies the directory where current configuration file is located. (#4717)

dmd/dtemplate.d

+6
Original file line numberDiff line numberDiff line change
@@ -4577,9 +4577,15 @@ version (IN_LLVM)
45774577

45784578
// The arguments are not treated as part of a default argument,
45794579
// because they are evaluated at compile time.
4580+
const inCondition = !!(sc.flags & SCOPE.condition);
4581+
// For master branch: const inCondition = sc.condition;
45804582
sc = sc.push();
45814583
sc.inDefaultArg = false;
45824584

4585+
// https://issues.dlang.org/show_bug.cgi?id=24699
4586+
sc.flags |= SCOPE.condition * inCondition;
4587+
// For master branch: sc.condition = inCondition;
4588+
45834589
for (size_t j = 0; j < tiargs.length; j++)
45844590
{
45854591
RootObject o = (*tiargs)[j];

dmd/errors.d

+5-2
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,11 @@ extern (C++) void verrorReportSupplemental(const ref Loc loc, const(char)* forma
567567
goto case ErrorKind.error;
568568
else if (global.params.useDeprecated == DiagnosticReporting.inform && !global.gag)
569569
{
570-
info.headerColor = Classification.deprecation;
571-
verrorPrint(format, ap, info);
570+
if (global.params.v.errorLimit == 0 || global.deprecations <= global.params.v.errorLimit)
571+
{
572+
info.headerColor = Classification.deprecation;
573+
verrorPrint(format, ap, info);
574+
}
572575
}
573576
break;
574577

runtime/phobos

tests/dmd/compilable/compile1.d

+5
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,11 @@ static assert (__traits(compiles, false && error) == false);
625625
int f11042a3()() if (__traits(compiles, true || error) == false) { return 0; } enum x11042a3 = f11042a3();
626626
int f11042b3()() if (__traits(compiles, false && error) == false) { return 0; } enum x11042b3 = f11042b3();
627627

628+
// https://issues.dlang.org/show_bug.cgi?id=24699
629+
enum T24699(bool cond) = cond;
630+
enum b24699a = T24699!(true || error);
631+
enum b24699b = T24699!(false && error);
632+
628633
/***************************************************/
629634
// https://issues.dlang.org/show_bug.cgi?id=11554
630635

tests/dmd/compilable/deprecationlimit.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ void main()
1818
f();
1919
f();
2020
f();
21-
f();
21+
static assert("1"); // also surpress deprecationSupplemental
2222
}

0 commit comments

Comments
 (0)