| Index: runtime/vm/intermediate_language.h
|
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
|
| index 2f46de57edce7c20499c18f5bbf39ec22a6769e7..dc3f37964a6db06844b566cb3bf3912dc0b4351b 100644
|
| --- a/runtime/vm/intermediate_language.h
|
| +++ b/runtime/vm/intermediate_language.h
|
| @@ -1652,9 +1652,14 @@ class Definition : public Instruction {
|
| bool HasSSATemp() const { return ssa_temp_index_ >= 0; }
|
| void ClearSSATempIndex() { ssa_temp_index_ = -1; }
|
| bool HasPairRepresentation() const {
|
| +#if defined(TARGET_ARCH_X64)
|
| + return (representation() == kPairOfTagged) ||
|
| + (representation() == kPairOfUnboxedDouble);
|
| +#else
|
| return (representation() == kPairOfTagged) ||
|
| (representation() == kPairOfUnboxedDouble) ||
|
| (representation() == kUnboxedMint);
|
| +#endif
|
| }
|
|
|
| // Compile time type of the definition, which may be requested before type
|
|
|