Index: src/compiler/ppc/code-generator-ppc.cc |
diff --git a/src/compiler/ppc/code-generator-ppc.cc b/src/compiler/ppc/code-generator-ppc.cc |
index 455b0ae97e8c500049fe6ed0290127054474b31b..80b407c6ecfa8390132000e8b4c980d37804e574 100644 |
--- a/src/compiler/ppc/code-generator-ppc.cc |
+++ b/src/compiler/ppc/code-generator-ppc.cc |
@@ -1978,6 +1978,13 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
case kAtomicStoreWord32: |
ASSEMBLE_ATOMIC_STORE_INTEGER(stw, stwx); |
break; |
+ case kAtomicExchangeInt8: |
+ case kAtomicExchangeUint8: |
+ case kAtomicExchangeInt16: |
+ case kAtomicExchangeUint16: |
+ case kAtomicExchangeWord32: |
+ UNREACHABLE(); |
+ break; |
default: |
UNREACHABLE(); |
break; |