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