mirror of https://github.com/stella-emu/stella.git
Disable warning for deadcode in Thumbulator.
This commit is contained in:
parent
6e86a2472f
commit
2efbca4ef8
|
@ -2880,7 +2880,7 @@ FORCE_INLINE int Thumbulator::execute() // NOLINT (readability-function-size)
|
||||||
|
|
||||||
//SWI
|
//SWI
|
||||||
case Op::swi: { // never used
|
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);
|
DO_DISS(statusMsg << "swi 0x" << Base::HEX2 << rb << endl);
|
||||||
|
|
||||||
//if(rb == 0xCC)
|
//if(rb == 0xCC)
|
||||||
|
|
Loading…
Reference in New Issue