diff options
| author | Ralf Jung <post@ralfj.de> | 2025-02-15 08:21:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-15 08:21:27 +0100 |
| commit | 8769d03caf689f89e778f95f5458a5b69be6258d (patch) | |
| tree | 30d7f30c7dc97f4864c57e53e9160dbd82bf9c8d | |
| parent | f3fa720352c992c3bd7b3c6fb21aac514943db8d (diff) | |
| download | rust-8769d03caf689f89e778f95f5458a5b69be6258d.tar.gz rust-8769d03caf689f89e778f95f5458a5b69be6258d.zip | |
add a doc comment
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/call.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/call.rs b/compiler/rustc_const_eval/src/interpret/call.rs index 995cec41145..29f819cca1f 100644 --- a/compiler/rustc_const_eval/src/interpret/call.rs +++ b/compiler/rustc_const_eval/src/interpret/call.rs @@ -241,6 +241,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> { interp_ok(caller == callee) } + /// Returns a `bool` saying whether the two arguments are ABI-compatible. pub fn check_argument_compat( &self, caller_abi: &ArgAbi<'tcx, Ty<'tcx>>, |
