| Index: src/compiler/s390/code-generator-s390.cc
|
| diff --git a/src/compiler/s390/code-generator-s390.cc b/src/compiler/s390/code-generator-s390.cc
|
| index ddf68562b861e7c3d0f6c834daab5ca045b08e11..377feada5161927317c87535018c95c2e8a8f5ec 100644
|
| --- a/src/compiler/s390/code-generator-s390.cc
|
| +++ b/src/compiler/s390/code-generator-s390.cc
|
| @@ -2260,6 +2260,13 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kAtomicStoreWord32:
|
| __ StoreW(i.InputRegister(0), i.MemoryOperand(NULL, 1));
|
| break;
|
| + case kAtomicExchangeInt8:
|
| + case kAtomicExchangeUint8:
|
| + case kAtomicExchangeInt16:
|
| + case kAtomicExchangeUint16:
|
| + case kAtomicExchangeWord32:
|
| + UNREACHABLE();
|
| + break;
|
| default:
|
| UNREACHABLE();
|
| break;
|
|
|