Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2bb0074
pattern_analysis: add option to get a full set of witnesses
Nadrieril Jul 19, 2025
9b01de2
List all the variants of non-exhaustive enums in exhaustive mode
Nadrieril Jul 19, 2025
af07c08
Silence a warning
Nadrieril Jul 19, 2025
a9fd8d0
bootstrap: Move musl-root fallback out of sanity check
Gelbpunkt Jul 22, 2025
3d186ea
Fix tests/assembly-llvm/dwarf-mixed-versions-lto.rs test failure on r…
Jul 23, 2025
2e49c52
Fix tests/codegen-llvm/const-vector.rs test failure on riscv64
Jul 23, 2025
de93fb1
Add `ignore-backends` annotations in failing GCC backend ui tests
GuillaumeGomez Jul 23, 2025
910ee2d
Fix `compiletest` bad handling of `ignore-backends`
GuillaumeGomez Jul 23, 2025
23fda60
RustWrapper: Suppress getNextNonDebugInfoInstruction
heiher Jul 23, 2025
93d2003
Update `dlmalloc` dependency of libstd
alexcrichton Jul 23, 2025
e7441fb
Clippy fixup
Gelbpunkt Jul 23, 2025
a924d44
Rehome tests/ui/issues/ tests [1/?]
Oneirical Jul 13, 2025
1106183
Mention type that could be `Clone` but isn't in more cases
estebank Jul 20, 2025
9c13f4f
Rollup merge of #144089 - Oneirical:uncountable-integer-1, r=jieyouxu
tgross35 Jul 26, 2025
3f7d497
Rollup merge of #144171 - Nadrieril:exhaustive-witnesses, r=davidtwco
tgross35 Jul 26, 2025
72e3767
Rollup merge of #144201 - estebank:suggest-clone, r=SparrowLii
tgross35 Jul 26, 2025
b950b67
Rollup merge of #144316 - Gelbpunkt:musl-libdir-bootstrap, r=Kobzol
tgross35 Jul 26, 2025
e30017b
Rollup merge of #144339 - CaiWeiran:dwarf-mixed-versions-lto_test, r=…
tgross35 Jul 26, 2025
a262dad
Rollup merge of #144341 - CaiWeiran:const-vector_test, r=wesleywiser
tgross35 Jul 26, 2025
2671afe
Rollup merge of #144352 - heiher:llvm-22, r=dianqk
tgross35 Jul 26, 2025
6b1b68f
Rollup merge of #144356 - GuillaumeGomez:gcc-ignore-tests, r=jieyouxu
tgross35 Jul 26, 2025
a230b4f
Rollup merge of #144364 - alexcrichton:update-dlmalloc, r=Mark-Simula…
tgross35 Jul 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tests/assembly-llvm/dwarf-mixed-versions-lto.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// This test ensures that if LTO occurs between crates with different DWARF versions, we
// will choose the highest DWARF version for the final binary. This matches Clang's behavior.
// Note: `.2byte` directive is used on MIPS.
// Note: `.half` directive is used on RISC-V.

//@ only-linux
//@ aux-build:dwarf-mixed-versions-lto-aux.rs
Expand All @@ -15,6 +16,6 @@ fn main() {
}

// CHECK: .section .debug_info
// CHECK-NOT: {{\.(short|hword|2byte)}} 2
// CHECK-NOT: {{\.(short|hword|2byte)}} 4
// CHECK: {{\.(short|hword|2byte)}} 5
// CHECK-NOT: {{\.(short|hword|2byte|half)}} 2
// CHECK-NOT: {{\.(short|hword|2byte|half)}} 4
// CHECK: {{\.(short|hword|2byte|half)}} 5