Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: src/compiler/instruction.h

Issue 2177483002: [turbofan] Handle impossible types (Type::None()) in the backend. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix?? Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/instruction.h
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
index b839acf6a66f3301baa252c34c7bce69b58128e8..05c0fb6e0777b96d269ef384e856ce0fce789d86 100644
--- a/src/compiler/instruction.h
+++ b/src/compiler/instruction.h
@@ -1149,6 +1149,8 @@ class FrameStateDescriptor : public ZoneObject {
}
StateValueDescriptor* GetStateValueDescriptor() { return &values_; }
+ static const int kImpossibleValue = 0xdead;
+
private:
FrameStateType type_;
BailoutId bailout_id_;

Powered by Google App Engine
This is Rietveld 408576698