about summary refs log tree commit diff
path: root/src/test/incremental/inlined_hir_34991
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-23/+0
2020-03-14Replace `Hir` with `hir_owner` in testsJohn Kåre Alsaker-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-05-17Rename trans to codegen everywhere.Irina Popa-1/+1
2016-08-02remap Hir(InlinedDefId) to MetaData(OriginalDefId)Niko Matsakis-0/+33
The way we do HIR inlining introduces reads of the "Hir" into the graph, but this Hir in fact belongs to other crates, so when we try to load later, we ICE because the Hir nodes in question don't belond to the crate (and we haven't done inlining yet). This pass rewrites those HIR nodes to the metadata from which the inlined HIR was loaded.