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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 2111803003: DBC: Remove special case from CheckClassInstr. Cleanup. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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: runtime/vm/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 43c10c6227bac8f0770b1ebc52d3ae3297b51a49..689d535ed0c1952a3edcbfb336bd628f3927fdd5 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -126,6 +126,12 @@ bool Instruction::Equals(Instruction* other) const {
}
+void Instruction::Unsupported(FlowGraphCompiler* compiler) {
+ compiler->Bailout(ToCString());
+ UNREACHABLE();
+}
+
+
bool Value::Equals(Value* other) const {
return definition() == other->definition();
}

Powered by Google App Engine
This is Rietveld 408576698