about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2023-07-13 16:54:25 -0700
committerDavid Tolnay <dtolnay@gmail.com>2023-07-20 11:04:31 -0700
commit6e734fce633fa5de1140f8e5d1dc981c40be1f92 (patch)
treee941abbb754772b6771793ccc37f447f01da5f78 /compiler/rustc_codegen_llvm/src/lib.rs
parentc80cbe4baedfe1ef8ea6f88f3cf2f8db06c8c399 (diff)
downloadrust-6e734fce633fa5de1140f8e5d1dc981c40be1f92.tar.gz
rust-6e734fce633fa5de1140f8e5d1dc981c40be1f92.zip
Implement printing to file in llvm_util
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/lib.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs
index 3ff66413647..50cc44bfbb4 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -320,7 +320,7 @@ impl CodegenBackend for LlvmCodegenBackend {
 "#
                 );
             }
-            _other => llvm_util::print(req, sess),
+            _other => llvm_util::print(req, out, sess),
         }
     }