We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ab016 commit cc72eb5Copy full SHA for cc72eb5
jingle_sleigh/src/pcode/mod.rs
@@ -416,9 +416,9 @@ impl PcodeOperation {
416
BranchInd { input, .. } => {
417
vec![input.into()]
418
}
419
- Call { args, .. } => {
420
- let b: Vec<_> = args.iter().map(GeneralizedVarNode::from).collect();
421
-
+ Call { args, dest, .. } => {
+ let mut b = vec![GeneralizedVarNode::from(dest)];
+ b.extend(args.iter().map(GeneralizedVarNode::from));
422
b
423
424
CallInd { input, .. } => {
0 commit comments