hotspot/src/share/vm/opto/subnode.hpp
changeset 33155 73bf16b22e89
parent 33089 f4e956ed8b43
child 33465 6063f28a6efb
--- a/hotspot/src/share/vm/opto/subnode.hpp	Fri Oct 09 20:45:45 2015 +0000
+++ b/hotspot/src/share/vm/opto/subnode.hpp	Thu Oct 15 13:28:22 2015 +0200
@@ -477,20 +477,6 @@
   virtual const Type *Value( PhaseTransform *phase ) const;
 };
 
-//------------------------------ExpDNode---------------------------------------
-//  Exponentiate a double
-class ExpDNode : public Node {
-public:
-  ExpDNode(Compile* C, Node *c, Node *in1) : Node(c, in1) {
-    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;
-};
-
 //------------------------------LogDNode---------------------------------------
 // Log_e of a double
 class LogDNode : public Node {