Skip to content

Commit

Permalink
syscall local
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Oct 9, 2024
1 parent a5ae1c8 commit cf2efb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/core/machine/src/syscall/memcpy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl<AB: SP1AirBuilder, NumWords: ArrayLength + Sync, NumBytes: ArrayLength + Sy
local.src_ptr,
local.dst_ptr,
local.is_real,
InteractionScope::Global,
InteractionScope::Local,
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ where
local.arg1_ptr,
local.arg2_ptr,
local.is_real,
InteractionScope::Global,
InteractionScope::Local,
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ where
local.p_ptr,
local.q_ptr,
local.is_real,
InteractionScope::Global,
InteractionScope::Local,
);
}
}

0 comments on commit cf2efb8

Please sign in to comment.