about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-12-16 13:52:12 +0100
committerbjorn3 <bjorn3@users.noreply.github.com>2021-12-16 13:52:12 +0100
commitd084fca557bb824dc0f31a8a5b056c4a43d5a487 (patch)
tree4e44e0dbc08a92523fa5e5c669abd3973640d5ef
parent2cb4fe711e697dfaea01ec707372478301deea02 (diff)
parentc57bcb8fcba857424afe20ddf0070c7c7e820567 (diff)
downloadrust-d084fca557bb824dc0f31a8a5b056c4a43d5a487.tar.gz
rust-d084fca557bb824dc0f31a8a5b056c4a43d5a487.zip
Sync from rust a090c8659c3be0cbc7dc93c4b2c11a9cdbf8b980
-rw-r--r--src/inline_asm.rs2
-rw-r--r--src/lib.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/inline_asm.rs b/src/inline_asm.rs
index 7c800a46d1b..30ab7bc4980 100644
--- a/src/inline_asm.rs
+++ b/src/inline_asm.rs
@@ -1,4 +1,4 @@
-//! Codegen of [`asm!`] invocations.
+//! Codegen of `asm!` invocations.
 
 use crate::prelude::*;
 
diff --git a/src/lib.rs b/src/lib.rs
index adaf5d858c6..3f288474827 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -208,6 +208,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
         &self,
         ongoing_codegen: Box<dyn Any>,
         _sess: &Session,
+        _outputs: &OutputFilenames,
     ) -> Result<(CodegenResults, FxHashMap<WorkProductId, WorkProduct>), ErrorReported> {
         Ok(*ongoing_codegen
             .downcast::<(CodegenResults, FxHashMap<WorkProductId, WorkProduct>)>()