hotspot/src/share/vm/opto/ifnode.cpp
changeset 35551 36ef3841fb34
parent 34181 663d662fdff0
child 35552 be1bff8945dc
--- a/hotspot/src/share/vm/opto/ifnode.cpp	Tue Jan 12 11:31:04 2016 +0100
+++ b/hotspot/src/share/vm/opto/ifnode.cpp	Tue Jan 12 12:55:09 2016 +0100
@@ -45,7 +45,7 @@
 //=============================================================================
 //------------------------------Value------------------------------------------
 // Return a tuple for whichever arm of the IF is reachable
-const Type *IfNode::Value( PhaseTransform *phase ) const {
+const Type* IfNode::Value(PhaseGVN* phase) const {
   if( !in(0) ) return Type::TOP;
   if( phase->type(in(0)) == Type::TOP )
     return Type::TOP;
@@ -1527,7 +1527,7 @@
 
 //------------------------------Identity---------------------------------------
 // If the test is constant & we match, then we are the input Control
-Node *IfProjNode::Identity(PhaseTransform *phase) {
+Node* IfProjNode::Identity(PhaseGVN* phase) {
   // Can only optimize if cannot go the other way
   const TypeTuple *t = phase->type(in(0))->is_tuple();
   if (t == TypeTuple::IFNEITHER ||