summaryrefslogtreecommitdiff
path: root/src/jit/gentree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/gentree.h')
-rw-r--r--src/jit/gentree.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/jit/gentree.h b/src/jit/gentree.h
index 7489340a8d..ebeae48cc0 100644
--- a/src/jit/gentree.h
+++ b/src/jit/gentree.h
@@ -2067,16 +2067,6 @@ public:
// Returns "true" iff "*this" is a statement containing an assignment that defines an SSA name (lcl = phi(...));
bool IsPhiDefnStmt();
- // Can't use an assignment operator, because we need the extra "comp" argument
- // (to provide the allocator necessary for the VarSet assignment).
- // TODO-Cleanup: Not really needed now, w/o liveset on tree nodes
- void CopyTo(class Compiler* comp, const GenTree& gt);
-
- // Like the above, excepts assumes copying from small node to small node.
- // (Following the code it replaces, it does *not* copy the GenTree fields,
- // which CopyTo does.)
- void CopyToSmall(const GenTree& gt);
-
// Because of the fact that we hid the assignment operator of "BitSet" (in DEBUG),
// we can't synthesize an assignment operator.
// TODO-Cleanup: Could change this w/o liveset on tree nodes
@@ -4257,8 +4247,7 @@ struct GenTreeIndexAddr : public GenTreeOp
gtFlags |= GTF_INX_RNGCHK;
}
- // REVERSE_OPS is set because we must evaluate the index before the array address.
- gtFlags |= GTF_EXCEPT | GTF_GLOB_REF | GTF_REVERSE_OPS;
+ gtFlags |= GTF_EXCEPT | GTF_GLOB_REF;
}
#if DEBUGGABLE_GENTREE