Set the hasNoSchedulingInfo flag for the`MipsAsmPseudoInst`. These pseudo-instructions are never used by codegen. This flag allows to reduce number of "No schedule information for" and "lacks information for" errors in case of marking a scheduler model as complete.
This patch is one of a series of patches. The goal is to make P5600 scheduler model complete and turn on the CompleteModel flag.
I looked only at CodeGenSchedModels::checkCompleteness()
We already have few pseudos with let hasNoSchedulingInfo = 1; and this has same effect (no error) in checkCompleteness as NoItinerary + empty Sched. Are there any advantages in using the latter?