We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12c691e commit 9bf15f5Copy full SHA for 9bf15f5
src/doc/unstable-book/src/language-features/intrinsics.md
@@ -24,6 +24,13 @@ fn foo() -> u32 {
24
}
25
```
26
27
+## Intrinsics lowered to MIR instructions
28
+
29
+Various intrinsics have native MIR operations that they correspond to. Instead of requiring
30
+backends to implement both the intrinsic and the MIR operation, the `lower_intrinsics` pass
31
+will convert the calls to the MIR operation. Backends do not need to know about these intrinsics
32
+at all.
33
34
## Intrinsics without fallback logic
35
36
These must be implemented by all backends.
0 commit comments