Skip to content

Commit bf9229a

Browse files
committed
Auto merge of #119082 - matthiaskrgr:rollup-3pzzwxk, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #118941 (llvm-wrapper: adapt for LLVM API changes) - #119068 (Copy 1.74.1 release notes to master) - #119080 (Comment out `change-id` in `config.example.toml`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 2a76340 + 9a24d8a commit bf9229a

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

RELEASES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 1.74.1 (2023-12-07)
2+
===========================
3+
4+
- [Resolved spurious STATUS_ACCESS_VIOLATIONs in LLVM](https://github.com/rust-lang/rust/pull/118464)
5+
- [Clarify guarantees for std::mem::discriminant](https://github.com/rust-lang/rust/pull/118006)
6+
- [Fix some subtyping-related regressions](https://github.com/rust-lang/rust/pull/116415)
7+
18
Version 1.74.0 (2023-11-16)
29
==========================
310

compiler/rustc_llvm/llvm-wrapper/CoverageMappingWrapper.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ extern "C" void LLVMRustCoverageWriteMappingToBuffer(
139139
RustMappingRegions, NumMappingRegions)) {
140140
MappingRegions.emplace_back(
141141
fromRust(Region.Count), fromRust(Region.FalseCount),
142+
#if LLVM_VERSION_GE(18, 0)
143+
coverage::CounterMappingRegion::MCDCParameters{},
144+
#endif
142145
Region.FileID, Region.ExpandedFileID,
143146
Region.LineStart, Region.ColumnStart, Region.LineEnd, Region.ColumnEnd,
144147
fromRust(Region.Kind));

config.example.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# - A change in the default values
3030
#
3131
# If `change-id` does not match the version that is currently running,
32-
# `x.py` will prompt you to update it and check the related PR for more details.
33-
change-id = 118703
32+
# `x.py` will inform you about the changes made on bootstrap.
33+
# change-id = <latest change id in src/bootstrap/src/utils/change_tracker.rs>
3434

3535
# =============================================================================
3636
# Tweaking how LLVM is compiled

triagebot.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -605,19 +605,19 @@ cc = ["@davidtwco", "@wesleywiser"]
605605
message = """
606606
This PR modifies `src/bootstrap/src/core/config`.
607607
608-
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs` and `change-id` in `config.example.toml`.
608+
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs`.
609609
"""
610610
[mentions."src/bootstrap/defaults"]
611611
message = """
612612
This PR modifies `src/bootstrap/defaults`.
613613
614-
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs` and `change-id` in `config.example.toml`.
614+
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs`.
615615
"""
616616
[mentions."config.example.toml"]
617617
message = """
618618
This PR modifies `config.example.toml`.
619619
620-
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs` and `change-id` in `config.example.toml`.
620+
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs`.
621621
"""
622622

623623
[mentions."src/bootstrap/defaults/config.compiler.toml"]

0 commit comments

Comments
 (0)