Axiom.Compiler.Framework.PrologRegisterTable.AllocateRegister C# (CSharp) Method

AllocateRegister() public method

public AllocateRegister ( int reg ) : void
reg int
return void
        public void AllocateRegister(int reg)
        {
            _registers[reg] = true;
        }

Usage Example

 public void AllocateTemporaryVariable(PrologVariableDictionaryEntry entry, int reg)
 {
     _registers.AllocateRegister(reg);
     entry.TemporaryIndex = reg;
 }
All Usage Examples Of Axiom.Compiler.Framework.PrologRegisterTable::AllocateRegister