Support input/output in vector registers of s390x inline assembly

This commit is contained in:
Taiki Endo 2024-11-22 04:18:14 +09:00
parent 75703c1a78
commit 2c8f6de1ba
9 changed files with 680 additions and 121 deletions

View file

@ -45,6 +45,7 @@ impl_marker_trait!(
impl<'a, T: ?Sized> Copy for &'a T {}
impl<T: ?Sized> Copy for *const T {}
impl<T: ?Sized> Copy for *mut T {}
impl<T: Copy, const N: usize> Copy for [T; N] {}
#[lang = "phantom_data"]
pub struct PhantomData<T: ?Sized>;