Disable warning for deadcode in Thumbulator.

This commit is contained in:
Stephen Anthony 2022-12-02 12:20:36 -03:30
parent 6e86a2472f
commit 2efbca4ef8
1 changed files with 1 additions and 1 deletions

View File

@ -2880,7 +2880,7 @@ FORCE_INLINE int Thumbulator::execute() // NOLINT (readability-function-size)
//SWI
case Op::swi: { // never used
rb = inst & 0xFF;
rb = inst & 0xFF; // NOLINT: clang-analyzer-deadcode.DeadStores
DO_DISS(statusMsg << "swi 0x" << Base::HEX2 << rb << endl);
//if(rb == 0xCC)