add comment for "Other" case

This commit is contained in:
Ralf Jung 2025-04-22 11:40:48 +02:00 committed by GitHub
parent 2d21c14015
commit 47a1278841
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -882,6 +882,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
Ord::max(global_align, fn_align).unwrap_or(Align::ONE)
}
// Machine-specific extra functions currently do not support alignment restrictions.
FnVal::Other(_) => Align::ONE,
};