Skip to content

Commit 69ec1dc

Browse files
authored
Unrolled build for rust-lang#122921
Rollup merge of rust-lang#122921 - saethlin:mir-opt-tests-in-debug, r=Mark-Simulacrum Enable more mir-opt tests in debug builds This is rust-lang#121531 but for the mir-opt test suite.
2 parents d6eb0f5 + 07994c9 commit 69ec1dc

8 files changed

+2
-9
lines changed

tests/mir-opt/dataflow-const-prop/default_boxed_slice.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ unit-test: DataflowConstProp
22
//@ compile-flags: -Zmir-enable-passes=+GVN,+Inline
3-
//@ ignore-debug assertions change the output MIR
43
// EMIT_MIR_FOR_EACH_BIT_WIDTH
54
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
65

tests/mir-opt/funky_arms.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// skip-filecheck
22
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
3-
//@ compile-flags: --crate-type lib -Cdebug-assertions=no
43

54
#![feature(flt2dec)]
65

tests/mir-opt/inline/unchecked_shifts.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#![crate_type = "lib"]
33
#![feature(unchecked_shifts)]
44

5-
//@ ignore-debug: the debug assertions prevent the inlining we are testing for
65
//@ compile-flags: -Zmir-opt-level=2 -Zinline-mir
76

87
// EMIT_MIR unchecked_shifts.unchecked_shl_unsigned_smaller.Inline.diff

tests/mir-opt/inline/unwrap_unchecked.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#![crate_type = "lib"]
22

33
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
4-
//@ ignore-debug: the debug assertions prevent the inlining we are testing for
5-
//@ compile-flags: -Zmir-opt-level=2 -Zinline-mir -Cdebug-assertions=no
4+
//@ compile-flags: -Zmir-opt-level=2 -Zinline-mir
65

76
// EMIT_MIR unwrap_unchecked.unwrap_unchecked.Inline.diff
87
// EMIT_MIR unwrap_unchecked.unwrap_unchecked.PreCodegen.after.mir

tests/mir-opt/pre-codegen/duplicate_switch_targets.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// skip-filecheck
22
//@ compile-flags: -O -Zmir-opt-level=2 -Cdebuginfo=0
3-
//@ ignore-debug: standard library debug assertions add a panic that breaks this optimization
43

54
#![crate_type = "lib"]
65

tests/mir-opt/pre-codegen/mem_replace.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2 -Zinline-mir
3-
//@ ignore-debug the standard library debug assertions leak into this test
3+
//@ ignore-debug: precondition checks on ptr::read/write are under cfg(debug_assertions)
44
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
55

66
#![crate_type = "lib"]

tests/mir-opt/pre-codegen/slice_index.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2
3-
//@ ignore-debug the standard library debug assertions leak into this test
43
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
54

65
#![crate_type = "lib"]

tests/mir-opt/pre-codegen/slice_iter.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2
3-
//@ ignore-debug the standard library debug assertions leak into this test
43
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
54

65
#![crate_type = "lib"]

0 commit comments

Comments
 (0)