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

Unified Diff: runtime/vm/intermediate_language.h

Issue 2748063003: Reland "VM: Simplify lowering of is-tests."" (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « runtime/vm/il_printer.cc ('k') | runtime/vm/intermediate_language_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index b4194727bafd71d9a96a8e7a7cf63fcf2f931646..952913f2c10acd7bcfdca59b0e7efb961276e8cb 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -3947,12 +3947,8 @@ class InstanceOfInstr : public TemplateDefinition<2, Throws> {
Value* value,
Value* instantiator_type_arguments,
const AbstractType& type,
- bool negate_result,
intptr_t deopt_id)
- : TemplateDefinition(deopt_id),
- token_pos_(token_pos),
- type_(type),
- negate_result_(negate_result) {
+ : TemplateDefinition(deopt_id), token_pos_(token_pos), type_(type) {
ASSERT(!type.IsNull());
SetInputAt(0, value);
SetInputAt(1, instantiator_type_arguments);
@@ -3964,7 +3960,6 @@ class InstanceOfInstr : public TemplateDefinition<2, Throws> {
Value* value() const { return inputs_[0]; }
Value* instantiator_type_arguments() const { return inputs_[1]; }
- bool negate_result() const { return negate_result_; }
const AbstractType& type() const { return type_; }
virtual TokenPosition token_pos() const { return token_pos_; }
@@ -3979,7 +3974,6 @@ class InstanceOfInstr : public TemplateDefinition<2, Throws> {
Value* value_;
Value* type_arguments_;
const AbstractType& type_;
- const bool negate_result_;
DISALLOW_COPY_AND_ASSIGN(InstanceOfInstr);
};
« no previous file with comments | « runtime/vm/il_printer.cc ('k') | runtime/vm/intermediate_language_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698