public void SimpleAshr_ParseCheck() { LAshr ashr = new LAshr(_valueResult, _valueOp1, _valueOp2); Assert.AreEqual($"{_valueResult.Identifier} = ashr {_valueResult.ParseType()} {_valueOp1.ValueOrIdentifier}, {_valueOp2.ValueOrIdentifier}", LHelper.Trim(ashr.ParseInstruction())); }
public void SimpleAshr_WithConstant_ParseCheck() { LValueRef op2 = new LValueRef(LType.Int32Type(), "12"); LAshr ashr = new LAshr(_valueResult, _valueOp1, op2); Assert.AreEqual($"{_valueResult.Identifier} = ashr {_valueResult.ParseType()} {_valueOp1.ValueOrIdentifier}, {op2.ValueOrIdentifier}", LHelper.Trim(ashr.ParseInstruction())); }