]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_metadata/schema.rs
Changes the type `mir::Mir` into `mir::Body`
[rust.git] / src / librustc_metadata / schema.rs
index b9e5bdef27ab4bd1f6735be43ee4e59ed327aedb..2c3291a41d32b6f7f06effc94ed529e1b8de2d86 100644 (file)
@@ -222,7 +222,7 @@ pub struct Entry<'tcx> {
     pub predicates: Option<Lazy<ty::GenericPredicates<'tcx>>>,
     pub predicates_defined_on: Option<Lazy<ty::GenericPredicates<'tcx>>>,
 
-    pub mir: Option<Lazy<mir::Mir<'tcx>>>,
+    pub mir: Option<Lazy<mir::Body<'tcx>>>,
 }
 
 #[derive(Copy, Clone, RustcEncodable, RustcDecodable)]