diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-05-24 09:53:20 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-05-28 13:38:43 +0000 |
| commit | eae5031ecbda434e92966099e0dc93917de03eff (patch) | |
| tree | 42080df6768a6577d2d1c88e226f2de4b1a56ac6 /compiler/rustc_middle/src | |
| parent | ddc5f9b6c1f21da5d4596bf7980185a00984ac42 (diff) | |
| download | rust-eae5031ecbda434e92966099e0dc93917de03eff.tar.gz rust-eae5031ecbda434e92966099e0dc93917de03eff.zip | |
Cache whether a body has inline consts
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/ty/context.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_middle/src/ty/context.rs b/compiler/rustc_middle/src/ty/context.rs index c09cb95de88..51bbe351218 100644 --- a/compiler/rustc_middle/src/ty/context.rs +++ b/compiler/rustc_middle/src/ty/context.rs @@ -737,6 +737,7 @@ impl<'tcx> TyCtxtFeed<'tcx, LocalDefId> { 1, ), bodies, + has_inline_consts: false, }))); self.feed_owner_id().hir_attrs(attrs); } |
