--- 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: