Ejemplo n.º 1
0
 public IRBinaryExpression ShiftRightLogical(IRExpression amount)
 => new IRBinaryExpression(Type, IRBinaryOperator.Lsr, this, amount.Cast(Type));
Ejemplo n.º 2
0
 public IRBinaryExpression ShiftRightArithmetic(IRExpression amount)
 => new IRBinaryExpression(Type, IRBinaryOperator.Asr, this, amount.Cast(Type));
Ejemplo n.º 3
0
 public IRBinaryExpression ShiftLeft(IRExpression amount)
 => new IRBinaryExpression(Type, IRBinaryOperator.Lsl, this, amount.Cast(Type));