63,67c63
< if (shiftAmt == 0) {
< ccprintf(os, " LSR #%d", 32);
< } else {
< ccprintf(os, " LSR #%d", shiftAmt);
< }
---
> ccprintf(os, " LSR #%d", (shiftAmt == 0) ? 32 : shiftAmt);
70,74c66
< if (shiftAmt == 0) {
< ccprintf(os, " ASR #%d", 32);
< } else {
< ccprintf(os, " ASR #%d", shiftAmt);
< }
---
> ccprintf(os, " ASR #%d", (shiftAmt == 0) ? 32 : shiftAmt);