Set the EFLAGS mutability for this instruction.
(mut self, eflags: Eflags)
| 170 | |
| 171 | /// Set the EFLAGS mutability for this instruction. |
| 172 | pub fn flags(mut self, eflags: Eflags) -> Self { |
| 173 | self.eflags = eflags; |
| 174 | self |
| 175 | } |
| 176 | |
| 177 | /// Return true if an instruction uses EFLAGS. |
| 178 | pub fn uses_eflags(&self) -> bool { |
no outgoing calls