about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-06-25 18:33:00 +0200
committerGitHub <noreply@github.com>2021-06-25 18:33:00 +0200
commit0d1cedecbb63da6a728a1ac9e75f3c442ceab6fa (patch)
treef4ebe3c40d38824f87a8fc8444ff3106e9d36a71 /docs
parent089d986c5c9ce6237013a4842f3093e721d4f589 (diff)
parent57c6eb7b2ba4375039d289e84e51e9e784b08f31 (diff)
downloadrust-0d1cedecbb63da6a728a1ac9e75f3c442ceab6fa.tar.gz
rust-0d1cedecbb63da6a728a1ac9e75f3c442ceab6fa.zip
Merge pull request #1166 from eggyal/lazy-jit-multithreaded
Multithreading support for lazy-jit
Diffstat (limited to 'docs')
-rw-r--r--docs/usage.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/usage.md b/docs/usage.md
index aac44b62d01..956d5905a97 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -40,8 +40,7 @@ $ $cg_clif_dir/build/bin/cg_clif -Cllvm-args=mode=jit -Cprefer-dynamic my_crate.
 ```
 
 There is also an experimental lazy jit mode. In this mode functions are only compiled once they are
-first called. It currently does not work with multi-threaded programs. When a not yet compiled
-function is called from another thread than the main thread, you will get an ICE.
+first called.
 
 ```bash
 $ $cg_clif_dir/build/cargo lazy-jit