Skip to content

Rollup of 3 pull requests - #161979

Merged
rust-bors[bot] merged 6 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-IymjmDu
Aug 29, 2026
Merged

Rollup of 3 pull requests#161979
rust-bors[bot] merged 6 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-IymjmDu

Conversation

@JonathanBrouwer

Copy link
Copy Markdown
Member

Successful merges:

r? @ghost

Create a similar rollup

beetrees and others added 6 commits August 13, 2026 18:45
Storing the TLS entry destructor as an `AtomicUsize` loses the pointer
provenance and makes miri cry :'(
Co-authored-by: Guillaume Gomez <contact@guillaume-gomez.fr>
…lkertdev

Add MSA and `f16` inline ASM support for MIPS

This PR adds vector register support for MIPS inline ASM when using the MSA extension ([MSA specification](https://s3-eu-west-1.amazonaws.com/downloads-mips/documents/MD00868-1D-MSA64-AFP-01.12.pdf)), as well as adding support for the `f16` type.

Ping target maintainers of MIPS targets: @Itus-Shield @Gelbpunkt @ayrtonm @LukasWoodtli @wzssyqa @chenx97 @709924470 @Cyanoxygen @Fearyncess

Tracking issues:
`f16` inline ASM: rust-lang#125398 (part of rust-lang#116909)
MIPS inline ASM: rust-lang#93335
MIPS target features: rust-lang#150253
…enance, r=clarfonthey

std::sys::sgx::tls: fix TLS destructor pointer provenance

Storing the TLS entry destructor as an `AtomicUsize` loses the pointer provenance and makes miri cry :'(

Instead, store an `AtomicPtr<()>`. I also find the SAFETY proof more convincing when the transmute from `*mut ()` to `Option<unsafe extern "C" fn(*mut u8)>` is exactly mirrored.

https://play.rust-lang.org/?version=nightly&mode=debug&edition=2024&gist=c6da201f269c5f3115039177a43bcdd4

```
   Compiling playground v0.0.1 (/playground)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.70s
     Running `/playground/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo-miri runner target/miri/x86_64-unknown-linux-gnu/debug/playground`
error: Undefined Behavior: pointer not dereferenceable: pointer must point to some allocation, but got 0x26b51[noalloc] which is a dangling pointer (it has no provenance)
  --> src/tls-bad.rs:73:30
   |
73 |                     unsafe { dtor(value) }
   |                              ^^^^^^^^^^^ Undefined Behavior occurred here
   |
   = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
   = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
   = note: stack backtrace:
           0: <tls::ActiveTls<'_> as std::ops::Drop>::drop
               at src/tls-bad.rs:73:30: 73:41
           1: std::ptr::drop_glue::<tls::ActiveTls<'_>> - shim(Some(tls::ActiveTls<'_>))
               at /playground/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:848:1: 850:25
           2: main
               at src/main.rs:50:1: 50:2

note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace

error: aborting due to 1 previous error
```
…sion-code, r=GuillaumeGomez

Improve rustdoc macro expansion code

As commented [here](rust-lang#161876 (comment)).

I also set you as commit author @fmease. :p

r? ghost
@rust-bors rust-bors Bot added the rollup A PR which is a rollup label Aug 29, 2026
@rustbot rustbot added A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. O-SGX Target: SGX S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. labels Aug 29, 2026
@JonathanBrouwer

Copy link
Copy Markdown
Member Author

@bors r+ p=5

@rust-bors

rust-bors Bot commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

📌 Commit acf76f5 has been approved by JonathanBrouwer

It is now in the queue for this repository.

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 29, 2026
@rust-bors

This comment has been minimized.

@rust-bors rust-bors Bot added merged-by-bors This PR was explicitly merged by bors. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 29, 2026
@rust-bors

rust-bors Bot commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

☀️ Test successful - CI
Approved by: JonathanBrouwer
Duration: 3h 7m 29s
Pushing bdf8733 to main...

@rust-bors
rust-bors Bot merged commit bdf8733 into rust-lang:main Aug 29, 2026
14 checks passed
@rustbot rustbot added this to the 1.100.0 milestone Aug 29, 2026
@github-actions

Copy link
Copy Markdown
Contributor
What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing ee4a4a6 (parent) -> bdf8733 (this PR)

Test differences

Show 130 test diffs

Stage 1

  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32: pass -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64: pass -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J2)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips32: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips32r6: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64r6: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips32: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips32r6: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips64: [missing] -> pass (J3)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips64r6: [missing] -> pass (J3)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J5)
  • [ui (polonius)] tests/ui/asm/mips/bad-reg.rs#mips32: [missing] -> pass (J8)
  • [ui (polonius)] tests/ui/asm/mips/bad-reg.rs#mips64: [missing] -> pass (J8)
  • [ui (polonius)] tests/ui/asm/mips/bad-reg.rs#mips64r6: [missing] -> pass (J8)
  • [ui (polonius)] tests/ui/asm/mips/reg-conflict.rs#mips32: [missing] -> pass (J8)
  • [ui (polonius)] tests/ui/asm/mips/reg-conflict.rs#mips32r6: [missing] -> pass (J8)
  • [ui (polonius)] tests/ui/asm/mips/reg-conflict.rs#mips64: [missing] -> pass (J8)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips32: [missing] -> pass (J10)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64: [missing] -> pass (J10)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64el: [missing] -> pass (J10)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64r6: [missing] -> pass (J10)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64r6el: [missing] -> pass (J10)

Stage 2

  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64: pass -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el_msa: [missing] -> ignore (ignored when the LLVM version 22.1.2 is older than 23.0.0) (J0)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips32: [missing] -> pass (J1)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64: [missing] -> pass (J1)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64r6: [missing] -> pass (J1)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips32r6: [missing] -> pass (J1)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips64: [missing] -> pass (J1)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32el_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6_msa: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el: [missing] -> pass (J4)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el_msa: [missing] -> pass (J4)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips32: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips32r6: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/bad-reg.rs#mips64r6: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips32: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips32r6: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips64: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [ui] tests/ui/asm/mips/reg-conflict.rs#mips64r6: [missing] -> ignore (gcc backend is marked as ignore) (J6)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips32r6el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-types.rs#mips64r6el_msa: [missing] -> ignore (ignored when the LLVM version 21.1.2 is older than 23.0.0) (J7)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips32el: [missing] -> pass (J9)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips32r6: [missing] -> pass (J9)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64: [missing] -> pass (J9)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64r6: [missing] -> pass (J9)
  • [assembly] tests/assembly-llvm/asm/mips-modifiers.rs#mips64r6el: [missing] -> pass (J9)

(and 26 additional test diffs)

Additionally, 4 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard bdf8733e4015150673f095b2725fe4c435a8daa4 --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. x86_64-gnu-distcheck: 1h 37m -> 2h 21m (+45.5%)
  2. dist-ohos-armv7: 52m 10s -> 1h 15m (+43.8%)
  3. x86_64-gnu-gcc: 1h 18m -> 48m 7s (-38.7%)
  4. dist-x86_64-msvc-alt: 2h 49m -> 1h 52m (-33.6%)
  5. x86_64-gnu-llvm-22-1: 59m 6s -> 1h 17m (+31.5%)
  6. dist-x86_64-llvm-mingw: 1h 36m -> 2h 6m (+31.1%)
  7. dist-powerpc64-linux-gnu: 1h 14m -> 1h 36m (+29.7%)
  8. dist-arm-linux-musl: 1h 23m -> 1h 46m (+27.2%)
  9. x86_64-msvc-ext3: 1h 55m -> 1h 23m (-27.1%)
  10. x86_64-gnu-llvm-22-3: 1h 28m -> 1h 50m (+25.0%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer

Copy link
Copy Markdown
Collaborator

Finished benchmarking commit (bdf8733): comparison URL.

Overall result: ✅ improvements - no action needed

@rustbot label: -perf-regression

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.4% [-0.4%, -0.4%] 1
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -0.4% [-0.4%, -0.4%] 1

Max RSS (memory usage)

Results (primary 1.1%, secondary -4.8%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.1% [1.1%, 1.1%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-4.8% [-4.8%, -4.8%] 1
All ❌✅ (primary) 1.1% [1.1%, 1.1%] 1

Cycles

This perf run didn't have relevant results for this metric.

Binary size

Results (primary 0.1%, secondary 0.1%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
0.1% [0.0%, 0.2%] 76
Regressions ❌
(secondary)
0.1% [0.0%, 0.2%] 65
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.1% [0.0%, 0.2%] 76

Bootstrap: 474.438s -> 474.125s (-0.07%)
Artifact size: 402.82 MiB -> 402.92 MiB (0.03%)

@rust-bors

rust-bors Bot commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#160851 Add MSA and f16 inline ASM support for MIPS e087545c82fc3161bac8bbc473bfadcde6376542
(link)
#161960 std::sys::sgx::tls: fix TLS destructor pointer provenance a8ffc245da0fd59873ba40c13786e9829f4ddad4
(link)
#161976 Improve rustdoc macro expansion code 2184e72864fc8c2055efc2070b4d3ec051362b3e
(link)

parent commit: ee4a4a6dc0

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. merged-by-bors This PR was explicitly merged by bors. O-SGX Target: SGX rollup A PR which is a rollup T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants