about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2022-10-06 14:13:12 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2022-10-06 14:22:12 +1100
commiteea06de0c894921deab541ad03c5ab728d4c449b (patch)
tree45950c61996b2166fe7d41b3b153856093a74142
parent092255976862c1f0121bb4446acd38336a860c4f (diff)
downloadrust-eea06de0c894921deab541ad03c5ab728d4c449b.tar.gz
rust-eea06de0c894921deab541ad03c5ab728d4c449b.zip
Fix some comments.
- It's `--print`, not `--prints`.
- `-Ztime` and `-Ztime-passes` print to stderr, not stdout.
-rw-r--r--compiler/rustc_data_structures/src/profiling.rs8
-rw-r--r--compiler/rustc_driver/src/lib.rs4
2 files changed, 6 insertions, 6 deletions
diff --git a/compiler/rustc_data_structures/src/profiling.rs b/compiler/rustc_data_structures/src/profiling.rs
index d8b26f9840b..3e74032d851 100644
--- a/compiler/rustc_data_structures/src/profiling.rs
+++ b/compiler/rustc_data_structures/src/profiling.rs
@@ -158,10 +158,10 @@ pub struct SelfProfilerRef {
     // actually enabled.
     event_filter_mask: EventFilter,
 
-    // Print verbose generic activities to stdout
+    // Print verbose generic activities to stderr.
     print_verbose_generic_activities: bool,
 
-    // Print extra verbose generic activities to stdout
+    // Print extra verbose generic activities to stderr.
     print_extra_verbose_generic_activities: bool,
 }
 
@@ -214,7 +214,7 @@ impl SelfProfilerRef {
     /// Start profiling a verbose generic activity. Profiling continues until the
     /// VerboseTimingGuard returned from this call is dropped. In addition to recording
     /// a measureme event, "verbose" generic activities also print a timing entry to
-    /// stdout if the compiler is invoked with -Ztime or -Ztime-passes.
+    /// stderr if the compiler is invoked with -Ztime or -Ztime-passes.
     pub fn verbose_generic_activity<'a>(
         &'a self,
         event_label: &'static str,
@@ -228,7 +228,7 @@ impl SelfProfilerRef {
     /// Start profiling an extra verbose generic activity. Profiling continues until the
     /// VerboseTimingGuard returned from this call is dropped. In addition to recording
     /// a measureme event, "extra verbose" generic activities also print a timing entry to
-    /// stdout if the compiler is invoked with -Ztime-passes.
+    /// stderr if the compiler is invoked with -Ztime-passes.
     pub fn extra_verbose_generic_activity<'a, A>(
         &'a self,
         event_label: &'static str,
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs
index fcd49f5d015..97657767f56 100644
--- a/compiler/rustc_driver/src/lib.rs
+++ b/compiler/rustc_driver/src/lib.rs
@@ -128,8 +128,8 @@ pub struct TimePassesCallbacks {
 
 impl Callbacks for TimePassesCallbacks {
     fn config(&mut self, config: &mut interface::Config) {
-        // If a --prints=... option has been given, we don't print the "total"
-        // time because it will mess up the --prints output. See #64339.
+        // If a --print=... option has been given, we don't print the "total"
+        // time because it will mess up the --print output. See #64339.
         self.time_passes = config.opts.prints.is_empty() && config.opts.time_passes();
         config.opts.trimmed_def_paths = TrimmedDefPaths::GoodPath;
     }