Index: src/compiler/mips/code-generator-mips.cc |
diff --git a/src/compiler/mips/code-generator-mips.cc b/src/compiler/mips/code-generator-mips.cc |
index f41005ba8168e861c9dd8e275acd64d6403b63e9..46c21335be74760ea35a6daeb6b78ec0e6ff6381 100644 |
--- a/src/compiler/mips/code-generator-mips.cc |
+++ b/src/compiler/mips/code-generator-mips.cc |
@@ -1590,6 +1590,13 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
case kAtomicStoreWord32: |
ASSEMBLE_ATOMIC_STORE_INTEGER(sw); |
break; |
+ case kAtomicExchangeInt8: |
+ case kAtomicExchangeUint8: |
+ case kAtomicExchangeInt16: |
+ case kAtomicExchangeUint16: |
+ case kAtomicExchangeWord32: |
+ UNREACHABLE(); |
+ break; |
} |
return kSuccess; |
} // NOLINT(readability/fn_size) |