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