| Index: src/compiler/instruction-codes.h
 | 
| diff --git a/src/compiler/instruction-codes.h b/src/compiler/instruction-codes.h
 | 
| index c4a78c339e037dae01f86e2c41e62f3062235914..fdc0f6f4f5e3fbd9052b6f044d0c4b7e1e1c0d4c 100644
 | 
| --- a/src/compiler/instruction-codes.h
 | 
| +++ b/src/compiler/instruction-codes.h
 | 
| @@ -78,7 +78,12 @@ enum class RecordWriteMode { kValueIsMap, kValueIsPointer, kValueIsAny };
 | 
|    V(CheckedStoreWord64)                   \
 | 
|    V(CheckedStoreFloat32)                  \
 | 
|    V(CheckedStoreFloat64)                  \
 | 
| -  V(ArchStackSlot)
 | 
| +  V(ArchStackSlot)                        \
 | 
| +  V(AtomicLoadInt8)                       \
 | 
| +  V(AtomicLoadUint8)                      \
 | 
| +  V(AtomicLoadInt16)                      \
 | 
| +  V(AtomicLoadUint16)                     \
 | 
| +  V(AtomicLoadWord32)
 | 
|  
 | 
|  #define ARCH_OPCODE_LIST(V)  \
 | 
|    COMMON_ARCH_OPCODE_LIST(V) \
 | 
| 
 |