protected override void Compile(CodeContext c) { var x = c.Int8("x"); var y = c.Int8("y"); c.SetArgument(0, x); c.Movsx(y, x); c.Ret(y); }