Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if let MLILOperand::VecIns(params) = i.params() {
  2. println!("{} -> {:?}", i, params);
  3. }
  4.  
  5. pub enum MLILOperand {
  6. Ins(MediumLevelILInstruction),
  7. VecIns(Vec<MediumLevelILInstruction>),
  8. // Add 10 more types
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement