hotspot/src/share/vm/opto/vectornode.hpp
changeset 32723 56534fb3d71a
parent 31035 0f0743952c41
child 33088 34fe49ecee13
--- a/hotspot/src/share/vm/opto/vectornode.hpp	Fri Sep 04 12:47:57 2015 +0200
+++ b/hotspot/src/share/vm/opto/vectornode.hpp	Wed Sep 09 10:34:17 2015 -0700
@@ -309,6 +309,14 @@
   virtual int Opcode() const;
 };
 
+//------------------------------SqrtVDNode--------------------------------------
+// Vector Sqrt double
+class SqrtVDNode : public VectorNode {
+ public:
+  SqrtVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
+  virtual int Opcode() const;
+};
+
 //------------------------------LShiftVBNode-----------------------------------
 // Vector left shift bytes
 class LShiftVBNode : public VectorNode {