| Index: runtime/vm/deopt_instructions.h
|
| diff --git a/runtime/vm/deopt_instructions.h b/runtime/vm/deopt_instructions.h
|
| index 158305606fcd0e8492b0020b8680f4f4241d100f..a7ae517b5460e6d0df678a95d7fbe277be8db74e 100644
|
| --- a/runtime/vm/deopt_instructions.h
|
| +++ b/runtime/vm/deopt_instructions.h
|
| @@ -221,9 +221,12 @@ class DeoptInstr : public ZoneAllocated {
|
| kFloat32x4,
|
| kFloat64x2,
|
| kInt32x4,
|
| - // Mints are split into low and high words. Each word can be in a register
|
| - // or stack slot. Note Mints are only used on 32-bit architectures.
|
| + // Mints are split into low and high words on 32-bit architectures. Each
|
| + // word can be in a register or stack slot. Note Mint pairs are only
|
| + // used on 32-bit architectures.
|
| kMintPair,
|
| + // Mints are held in one word on 64-bit architectures.
|
| + kMint,
|
| kInt32,
|
| kUint32,
|
| kPcMarker,
|
|
|