diff options
| author | Ralf Jung <post@ralfj.de> | 2023-10-28 15:39:54 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-10-28 15:40:03 +0200 |
| commit | 351d532a27c56f7af82feaa7d612c412fd5c221c (patch) | |
| tree | 5c5e4c3a5461e0f429571dd89d912bff9956a082 /compiler/rustc_const_eval/src/util/mod.rs | |
| parent | 615d0f2400428eed3b086ca5332369ec150143d6 (diff) | |
| download | rust-351d532a27c56f7af82feaa7d612c412fd5c221c.tar.gz rust-351d532a27c56f7af82feaa7d612c412fd5c221c.zip | |
interpret: call caller_location logic the same way codegen does, and share some code
Diffstat (limited to 'compiler/rustc_const_eval/src/util/mod.rs')
| -rw-r--r-- | compiler/rustc_const_eval/src/util/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_const_eval/src/util/mod.rs b/compiler/rustc_const_eval/src/util/mod.rs index 040b3071e6f..1e58bd645cd 100644 --- a/compiler/rustc_const_eval/src/util/mod.rs +++ b/compiler/rustc_const_eval/src/util/mod.rs @@ -1,6 +1,7 @@ use rustc_middle::mir; mod alignment; +pub(crate) mod caller_location; mod check_validity_requirement; mod compare_types; mod type_name; |
