Displaying 1 result from an estimated 1 matches for "micrormip".
Did you mean:
micrormips
2012 May 17
2
[LLVMdev] subtarget features
...-mips16 -mips32 -micromips -mips64
With the implications the -mips16 and -micromips both imply mips32 as
the base architecture.
mips32 and mips64 have mostly the same instruction encoding (difference
being the size of the
registers).
Ideally you would want:
standardencoding = !mips16 & !micrormips
then standardencoding is used to be a predicate for all non mips16 and
micromips instructions.