diff options
| author | bors <bors@rust-lang.org> | 2022-02-25 05:44:33 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-02-25 05:44:33 +0000 |
| commit | ece55d416e65256e4da274988651c20e5d5cb4ea (patch) | |
| tree | afa1ecb7bdb5e595f2ff0d42b959a19dbd453ac2 /compiler/rustc_interface/src | |
| parent | f6a79936da30702b1c717769a2d12dffbad6d30a (diff) | |
| parent | 5bf8303bbc0f7ad6f68c1c7311ca538ddcb23ebe (diff) | |
| download | rust-ece55d416e65256e4da274988651c20e5d5cb4ea.tar.gz rust-ece55d416e65256e4da274988651c20e5d5cb4ea.zip | |
Auto merge of #94130 - erikdesjardins:partially, r=nikic
Use undef for (some) partially-uninit constants There needs to be some limit to avoid perf regressions on large arrays with undef in each element (see comment in the code). Fixes: #84565 Original PR: #83698 Depends on LLVM 14: #93577
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 9ab138c1b12..def5c30411b 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -758,7 +758,6 @@ fn test_debugging_options_tracking_hash() { tracked!(osx_rpath_install_name, true); tracked!(panic_abort_tests, true); tracked!(panic_in_drop, PanicStrategy::Abort); - tracked!(partially_uninit_const_threshold, Some(123)); tracked!(pick_stable_methods_before_any_unstable, false); tracked!(plt, Some(true)); tracked!(polonius, true); @@ -789,6 +788,7 @@ fn test_debugging_options_tracking_hash() { tracked!(trap_unreachable, Some(false)); tracked!(treat_err_as_bug, NonZeroUsize::new(1)); tracked!(tune_cpu, Some(String::from("abc"))); + tracked!(uninit_const_chunk_threshold, 123); tracked!(unleash_the_miri_inside_of_you, true); tracked!(use_ctors_section, Some(true)); tracked!(verify_llvm_ir, true); |
