diff options
| author | Mingye Wang <arthur200126@gmail.com> | 2020-09-17 17:39:26 +0800 |
|---|---|---|
| committer | Mingye Wang <arthur2e5@aosc.io> | 2020-10-05 07:50:44 +0800 |
| commit | a35a93f09cc111a53d00efc567ad678583dd5ac7 (patch) | |
| tree | 943360a4a63ea2f050f5e53e691afb5c8a11d2bc /compiler/rustc_interface/src/tests.rs | |
| parent | 285fc7d704fcdd7b2a37d475d04d5d955490e000 (diff) | |
| download | rust-a35a93f09cc111a53d00efc567ad678583dd5ac7.tar.gz rust-a35a93f09cc111a53d00efc567ad678583dd5ac7.zip | |
Pass tune-cpu to LLVM
I think this is how it should work...
Diffstat (limited to 'compiler/rustc_interface/src/tests.rs')
| -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 dc4fa807f78..a0f2929c7e3 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -583,6 +583,7 @@ fn test_debugging_options_tracking_hash() { tracked!(symbol_mangling_version, SymbolManglingVersion::V0); tracked!(teach, true); tracked!(thinlto, Some(true)); + tracked!(tune_cpu, Some(String::from("abc"))); tracked!(tls_model, Some(TlsModel::GeneralDynamic)); tracked!(treat_err_as_bug, Some(1)); tracked!(unleash_the_miri_inside_of_you, true); |
