| Index: src/compiler/s390/instruction-codes-s390.h
 | 
| diff --git a/src/compiler/s390/instruction-codes-s390.h b/src/compiler/s390/instruction-codes-s390.h
 | 
| index 0407bc97a6f7535469aa15d2012085bc6c74c3e2..0f6f5fe2897bd7ad8a5496ad1d3119668eae5a2c 100644
 | 
| --- a/src/compiler/s390/instruction-codes-s390.h
 | 
| +++ b/src/compiler/s390/instruction-codes-s390.h
 | 
| @@ -166,8 +166,10 @@ namespace compiler {
 | 
|  // MRI = [register + immediate]
 | 
|  // MRR = [register + register]
 | 
|  #define TARGET_ADDRESSING_MODE_LIST(V) \
 | 
| -  V(MRI) /* [%r0 + K] */               \
 | 
| -  V(MRR) /* [%r0 + %r1] */
 | 
| +  V(MR)   /* [%r0          ] */        \
 | 
| +  V(MRI)  /* [%r0       + K] */        \
 | 
| +  V(MRR)  /* [%r0 + %r1    ] */        \
 | 
| +  V(MRRI) /* [%r0 + %r1 + K] */
 | 
|  
 | 
|  }  // namespace compiler
 | 
|  }  // namespace internal
 | 
| 
 |