diff src/share/vm/opto/subnode.hpp @ 3338:f1d6640088a1

6796786: invalid FP identity transform - (a - b) -> b - a Reviewed-by: iveresov, twisti
author never
date Tue, 03 May 2011 12:11:54 -0700
parents f95d63e2154a
children ae9241bbce4a
line wrap: on
line diff
--- a/src/share/vm/opto/subnode.hpp	Mon May 02 18:53:37 2011 -0700
+++ b/src/share/vm/opto/subnode.hpp	Tue May 03 12:11:54 2011 -0700
@@ -377,7 +377,6 @@
 public:
   NegFNode( Node *in1 ) : NegNode(in1) {}
   virtual int Opcode() const;
-  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   const Type *bottom_type() const { return Type::FLOAT; }
   virtual uint ideal_reg() const { return Op_RegF; }
 };
@@ -391,7 +390,6 @@
 public:
   NegDNode( Node *in1 ) : NegNode(in1) {}
   virtual int Opcode() const;
-  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   const Type *bottom_type() const { return Type::DOUBLE; }
   virtual uint ideal_reg() const { return Op_RegD; }
 };