src/hotspot/share/opto/castnode.hpp
changeset 54327 a4d19817609c
parent 53244 9807daeb47c4
child 58019 86b95fc6ca32
--- a/src/hotspot/share/opto/castnode.hpp	Thu Mar 28 10:04:27 2019 -0700
+++ b/src/hotspot/share/opto/castnode.hpp	Thu Mar 28 11:06:00 2019 -0700
@@ -35,7 +35,7 @@
   protected:
   // Can this node be removed post CCP or does it carry a required dependency?
   const bool _carry_dependency;
-  virtual uint cmp( const Node &n ) const;
+  virtual bool cmp( const Node &n ) const;
   virtual uint size_of() const;
 
   public:
@@ -65,7 +65,7 @@
   protected:
   // Is this node dependent on a range check?
   const bool _range_check_dependency;
-  virtual uint cmp(const Node &n) const;
+  virtual bool cmp(const Node &n) const;
   virtual uint size_of() const;
 
   public: