()
| 122 | |
| 123 | #[test] |
| 124 | fn xconst64() { |
| 125 | for (expected, imm) in [(42u64, 42i64), (u64::MAX, -1i64)] { |
| 126 | unsafe { |
| 127 | assert_one( |
| 128 | [(x(0), 0x1234567812345678u64)], |
| 129 | Xconst64 { dst: x(0), imm }, |
| 130 | x(0), |
| 131 | expected, |
| 132 | ); |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | #[test] |
| 138 | fn xadd32() { |
no test coverage detected