]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_codegen_llvm/value.rs
Index HIR after creating TyCtxt
[rust.git] / src / librustc_codegen_llvm / value.rs
index eadbe754e8e41cdaa07bcaf08587436e995ba45f..1338a229566c82ac10c8dba9add79910cc8f07ce 100644 (file)
@@ -20,11 +20,13 @@ fn hash<H: Hasher>(&self, hasher: &mut H) {
     }
 }
 
-
 impl fmt::Debug for Value {
     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
-        f.write_str(&llvm::build_string(|s| unsafe {
-            llvm::LLVMRustWriteValueToString(self, s);
-        }).expect("non-UTF8 value description from LLVM"))
+        f.write_str(
+            &llvm::build_string(|s| unsafe {
+                llvm::LLVMRustWriteValueToString(self, s);
+            })
+            .expect("non-UTF8 value description from LLVM"),
+        )
     }
 }