13 lines
207 B
C#
13 lines
207 B
C#
namespace ARMeilleure.IntermediateRepresentation
|
|
{
|
|
enum OperandKind
|
|
{
|
|
None,
|
|
Constant,
|
|
Label,
|
|
LocalVariable,
|
|
Memory,
|
|
Register,
|
|
Undefined
|
|
}
|
|
} |