jasmin icon indicating copy to clipboard operation
jasmin copied to clipboard

inline arrays remain

Open vbgl opened this issue 1 year ago • 0 comments

Bug or feature?

"bug_529.jazz", line 5 (2-11): internal compilation error in function bug_529: stack allocation: register array remains (t)

export
fn bug_529() -> reg u32 {
  inline u32[1] t;
  reg u32 r;
  t[0] = 0;
  r = t[0];
  return r;
}

vbgl avatar Jul 18 '23 12:07 vbgl