Rename SimpleJIT to JIT as it isn't simple anymore

This commit is contained in:
bjorn3
2020-12-04 19:28:31 +01:00
committed by Andrew Brown
parent 502b39606f
commit 411ec3a857
16 changed files with 68 additions and 74 deletions

View File

@@ -21,7 +21,7 @@ use thiserror::Error;
/// `CompiledFunction`s and subsequently calling them through the use of a `Trampoline`. As its
/// name indicates, this compiler is limited: any functionality that requires knowledge of things
/// outside the [Function] will likely not work (e.g. global values, calls). For an example of this
/// "outside-of-function" functionality, see `cranelift_simplejit::backend::SimpleJITBackend`.
/// "outside-of-function" functionality, see `cranelift_jit::backend::JITBackend`.
///
/// ```
/// use cranelift_filetests::SingleFunctionCompiler;