jasmin icon indicating copy to clipboard operation
jasmin copied to clipboard

SCT checker too coarse with stack arguments

Open vbgl opened this issue 1 year ago • 0 comments

This is a regression introduced in #847. The following program is no longer accepted by the SCT checker.

inline
fn reset(stack u64 t) {
  [t] = 0;
}

export
fn main(reg u64 x) {
  _ = #init_msf();
  stack u64 s;
  s = x;
  reset(s);
}

vbgl avatar Jun 27 '24 20:06 vbgl