aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/IntermediateRepresentation/OperandKind.cs
blob: 5761835344500337af70d7ae416b8ccad986495e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace ARMeilleure.IntermediateRepresentation
{
    enum OperandKind
    {
        Constant,
        Label,
        LocalVariable,
        Memory,
        Register,
        Undefined
    }
}