(sys: u32)
| 55 | #[cfg(target_arch = "x86")] |
| 56 | #[inline] |
| 57 | pub(super) fn x86_sys<'a, Num: ArgNumber>(sys: u32) -> ArgReg<'a, Num> { |
| 58 | pass_usize(sys as usize) |
| 59 | } |
| 60 | |
| 61 | /// Pass the "low" half of the endian-specific memory encoding of a `u64`, for |
| 62 | /// 32-bit architectures. |
nothing calls this directly
no test coverage detected