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