about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-11-29 10:19:00 +0100
committerGitHub <noreply@github.com>2024-11-29 10:19:00 +0100
commitce52b7b3d82eef4aca24d4f0cc9e22057fe3f755 (patch)
tree783ea0784cd55c9270f8707c0fb9b7a795f157a7 /compiler/rustc_interface/src
parent72cf40d9edd4d8172f5e1ff58f6cafe9734b2e2a (diff)
parentaccdfa1e526af99c4c60412a12a9a8253eab5984 (diff)
downloadrust-ce52b7b3d82eef4aca24d4f0cc9e22057fe3f755.tar.gz
rust-ce52b7b3d82eef4aca24d4f0cc9e22057fe3f755.zip
Rollup merge of #133590 - nnethercote:rename-parse-only, r=estebank
Rename `-Zparse-only`

It's a misleading name.

r? ````@estebank````
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 6beae14100d..c1b2d856252 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -712,7 +712,7 @@ fn test_unstable_options_tracking_hash() {
     untracked!(no_analysis, true);
     untracked!(no_leak_check, true);
     untracked!(no_parallel_backend, true);
-    untracked!(parse_only, true);
+    untracked!(parse_crate_root_only, true);
     // `pre_link_arg` is omitted because it just forwards to `pre_link_args`.
     untracked!(pre_link_args, vec![String::from("abc"), String::from("def")]);
     untracked!(print_codegen_stats, true);