Another example is MIPS
Typically when a new ISA version is introduced then instructions are added but old instructions are still left as-is for backward compatibility. For example in x86 many instructions that no one uses for decades are still valid and supported until now. However in MIPS III a few instructions were removed to free up some opcodes. Then after MIPS V when MIPS Technologies split off from SGI, a major overhaul was introduced: MIPS32/MIPS64. The naming scheme was changed and some more instructions were removed
- some conditional moves
- branch likely instructions (deprecated in previous releases).
- integer overflow trapping instructions with 16-bit immediate
- integer accumulator instructions (together HI/LO registers, moved to the DSP Application-Specific Extension)
- unaligned load instructions (LWL and LWR), (requiring that most ordinary loads and stores support misaligned access, possibly via trapping and with the addition of a new instruction (BALIGN))
MIPS32/MIPS64
It also "Reorganized the instruction encoding, freeing space for future expansions."
One of the reasons for that is probably because MIPS changed their focus from high performance systems to embedded systems