]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_codegen_ssa/traits/mod.rs
New upstream version 1.43.0+dfsg1
[rustc.git] / src / librustc_codegen_ssa / traits / mod.rs
index fff1b35507ce6cc65df7f1866cbdcd1700a77365..d03ff8d4d37d8b7cf4aef1c6900a1fae0f867f40 100644 (file)
@@ -8,7 +8,7 @@
 //! actual codegen, while the builder stores the information about the function during codegen and
 //! is used to produce the instructions of the backend IR.
 //!
-//! Finaly, a third `Backend` structure has to implement methods related to how codegen information
+//! Finally, a third `Backend` structure has to implement methods related to how codegen information
 //! is passed to the backend, especially for asynchronous compilation.
 //!
 //! The traits contain associated types that are backend-specific, such as the backend's value or
@@ -93,5 +93,6 @@ pub trait HasCodegen<'tcx>:
             Type = Self::Type,
             Funclet = Self::Funclet,
             DIScope = Self::DIScope,
+            DIVariable = Self::DIVariable,
         >;
 }