diff options
| author | Ben Kimock <kimockb@gmail.com> | 2023-10-06 20:29:42 -0400 |
|---|---|---|
| committer | Ben Kimock <kimockb@gmail.com> | 2023-10-17 19:53:51 -0400 |
| commit | 33b0e4be060c8a3f5cc86b6a3e89d8e980a9a51b (patch) | |
| tree | 79040aac88d1e13a620fd8d730822a727a6cf323 /compiler/rustc_interface/src | |
| parent | 09df6108c84fdec400043d99d9ee232336fd5a9f (diff) | |
| download | rust-33b0e4be060c8a3f5cc86b6a3e89d8e980a9a51b.tar.gz rust-33b0e4be060c8a3f5cc86b6a3e89d8e980a9a51b.zip | |
Automatically enable cross-crate inlining for small functions
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 7799af37008..ec4fd78994e 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -770,6 +770,7 @@ fn test_unstable_options_tracking_hash() { ); tracked!(codegen_backend, Some("abc".to_string())); tracked!(crate_attr, vec!["abc".to_string()]); + tracked!(cross_crate_inline_threshold, Some(200)); tracked!(debug_info_for_profiling, true); tracked!(debug_macros, true); tracked!(dep_info_omit_d_target, true); |
