(&mut self, val: [f32; 4])
| 730 | } |
| 731 | |
| 732 | fn set_f32x4(&mut self, val: [f32; 4]) { |
| 733 | self.0.f32x4 = val.map(|e| e.to_bits().to_le()); |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | /// The machine state for a Pulley virtual machine: the various registers and |
no test coverage detected