File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- //! The JIT driver uses [`cranelift_simplejit `] to JIT execute programs without writing any object
1
+ //! The JIT driver uses [`cranelift_jit `] to JIT execute programs without writing any object
2
2
//! files.
3
3
4
4
use std:: cell:: RefCell ;
Original file line number Diff line number Diff line change 1
- //! Drivers are responsible for calling [`codegen_mono_item`] and performing any further actions
2
- //! like JIT executing or writing object files.
1
+ //! Drivers are responsible for calling [`codegen_fn`] or [`codegen_static`] for each mono item and
2
+ //! performing any further actions like JIT executing or writing object files.
3
+ //!
4
+ //! [`codegen_fn`]: crate::base::codegen_fn
5
+ //! [`codegen_static`]: crate::constant::codegen_static
3
6
4
7
use rustc_middle:: mir:: mono:: { Linkage as RLinkage , MonoItem , Visibility } ;
5
8
You can’t perform that action at this time.
0 commit comments