blob: 34781b7005485b0fa75b36b9e667f43480049b3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace ARMeilleure.IntermediateRepresentation
{
class IntrinsicOperation : Operation
{
public Intrinsic Intrinsic { get; }
public IntrinsicOperation(Intrinsic intrin, Operand dest, params Operand[] sources) : base(Instruction.Extended, dest, sources)
{
Intrinsic = intrin;
}
}
}
|