示例#1
0
        public void InstructionInputDependenciesEntryExists()
        {
            // Check all instructions have a dependency entry in the operand dependancy hashmap
            var values = Enum.GetValues(typeof(OpCodes.Op)).Cast <OpCodes.Op>();

            foreach (OpCodes.Op o in values)
            {
                OpCodes.GetInfo(o);
            }
        }