Skip to content

Commit

Permalink
[docs] Fix rendering of warning admonition in llvm passes page (#56412)
Browse files Browse the repository at this point in the history
Follow up to #56392: also the warning in
https://docs.julialang.org/en/v1.11.1/devdocs/llvm-passes/#Multiversioning
is rendered incorrectly because of a missing space.
  • Loading branch information
giordano authored Nov 1, 2024
1 parent 7d81897 commit 3de1b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/devdocs/llvm-passes.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ This pass performs modifications to a module to create functions that are optimi

!!! warning

Use of `llvmcall` with multiversioning is dangerous. `llvmcall` enables access to features not typically exposed by the Julia APIs, and are therefore usually not available on all architectures. If multiversioning is enabled and code generation is requested for a target architecture that does not support the feature required by an `llvmcall` expression, LLVM will probably error out, likely with an abort and the message `LLVM ERROR: Do not know how to split the result of this operator!`.
Use of `llvmcall` with multiversioning is dangerous. `llvmcall` enables access to features not typically exposed by the Julia APIs, and are therefore usually not available on all architectures. If multiversioning is enabled and code generation is requested for a target architecture that does not support the feature required by an `llvmcall` expression, LLVM will probably error out, likely with an abort and the message `LLVM ERROR: Do not know how to split the result of this operator!`.

### GCInvariantVerifier

Expand Down

0 comments on commit 3de1b1d

Please sign in to comment.