| Index: runtime/vm/intermediate_language.h
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.h (revision 44874)
|
| +++ runtime/vm/intermediate_language.h (working copy)
|
| @@ -7592,8 +7592,13 @@
|
|
|
| virtual void PrintOperandsTo(BufferFormatter* f) const;
|
|
|
| - bool IsNullCheck() const;
|
| + bool IsNullCheck() const {
|
| + return DeoptIfNull() || DeoptIfNotNull();
|
| + }
|
|
|
| + bool DeoptIfNull() const;
|
| + bool DeoptIfNotNull() const;
|
| +
|
| bool IsDenseSwitch() const;
|
| intptr_t ComputeCidMask() const;
|
| static bool IsDenseMask(intptr_t mask);
|
|
|