| Index: runtime/vm/deopt_instructions.h
|
| diff --git a/runtime/vm/deopt_instructions.h b/runtime/vm/deopt_instructions.h
|
| index c2ee73565ae7a4edf9dbbf98a8136e8591da34da..559edd3cddb0cd51768504646a7197a5dce56b28 100644
|
| --- a/runtime/vm/deopt_instructions.h
|
| +++ b/runtime/vm/deopt_instructions.h
|
| @@ -217,9 +217,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,
|
|
|