Skip to content

Commit bf77592

Browse files
committed
link glossary to mir
1 parent 0414ffe commit bf77592

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ HirId | identifies a particular node in the HIR by combining
1515
generics | the set of generic type parameters defined on a type or item
1616
ICE | internal compiler error. When the compiler crashes.
1717
infcx | the inference context (see `librustc/infer`)
18-
MIR | the Mid-level IR that is created after type-checking for use by borrowck and trans. Defined in the `src/librustc/mir/` module, but much of the code that manipulates it is found in `src/librustc_mir`.
18+
MIR | the Mid-level IR that is created after type-checking for use by borrowck and trans ([see more](./mir.html))
1919
obligation | something that must be proven by the trait system ([see more](trait-resolution.html))
2020
local crate | the crate currently being compiled.
2121
node-id or NodeId | an index identifying a particular node in the AST or HIR; gradually being phased out and replaced with `HirId`.

src/mir.md

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
# The MIR (Mid-level IR)
2+
3+
TODO
4+
5+
Defined in the `src/librustc/mir/` module, but much of the code that
6+
manipulates it is found in `src/librustc_mir`.

0 commit comments

Comments
 (0)