hotspot/src/share/vm/opto/subnode.hpp
changeset 35146 9ebfec283f56
parent 33465 6063f28a6efb
child 35540 e001ad24dcdb
--- a/hotspot/src/share/vm/opto/subnode.hpp	Wed Dec 23 16:24:19 2015 -0800
+++ b/hotspot/src/share/vm/opto/subnode.hpp	Wed Dec 23 21:09:50 2015 -0800
@@ -491,20 +491,6 @@
   virtual const Type *Value( PhaseTransform *phase ) const;
 };
 
-//------------------------------PowDNode---------------------------------------
-// Raise a double to a double power
-class PowDNode : public Node {
-public:
-  PowDNode(Compile* C, Node *c, Node *in1, Node *in2 ) : Node(c, in1, in2) {
-    init_flags(Flag_is_expensive);
-    C->add_expensive_node(this);
-  }
-  virtual int Opcode() const;
-  const Type *bottom_type() const { return Type::DOUBLE; }
-  virtual uint ideal_reg() const { return Op_RegD; }
-  virtual const Type *Value( PhaseTransform *phase ) const;
-};
-
 //-------------------------------ReverseBytesINode--------------------------------
 // reverse bytes of an integer
 class ReverseBytesINode : public Node {