jasmin icon indicating copy to clipboard operation
jasmin copied to clipboard

Literals are silently truncated

Open vbgl opened this issue 4 years ago • 0 comments

The following program returns zero:

export
fn test() -> reg u8 {
  reg u8 a;
  a = 256;
  return a;
}

vbgl avatar Sep 20 '21 08:09 vbgl