about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/builder.rs
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2022-07-05 09:27:06 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2022-07-05 09:27:06 +0000
commit82c73af4a60c5c9b4ac92813a9f5e902ada67e6b (patch)
tree396069758a393cbce9a60601f28a1aefcc5a037c /compiler/rustc_codegen_llvm/src/builder.rs
parentc3aec3056e3c88bfc63db5cd4dc24624be7c576a (diff)
downloadrust-82c73af4a60c5c9b4ac92813a9f5e902ada67e6b.tar.gz
rust-82c73af4a60c5c9b4ac92813a9f5e902ada67e6b.zip
Prefer trace level instrumentation for the new noisy instrument attributes
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/builder.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/builder.rs b/compiler/rustc_codegen_llvm/src/builder.rs
index 70cdf903038..4a4cccb490d 100644
--- a/compiler/rustc_codegen_llvm/src/builder.rs
+++ b/compiler/rustc_codegen_llvm/src/builder.rs
@@ -464,7 +464,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
         }
     }
 
-    #[instrument(level = "debug", skip(self))]
+    #[instrument(level = "trace", skip(self))]
     fn load_operand(&mut self, place: PlaceRef<'tcx, &'ll Value>) -> OperandRef<'tcx, &'ll Value> {
         assert_eq!(place.llextra.is_some(), place.layout.is_unsized());