src/hotspot/share/code/dependencyContext.hpp
changeset 51333 f6641fcf7b7e
parent 47216 71c04702a3d5
child 51887 32161fbea3fe
--- a/src/hotspot/share/code/dependencyContext.hpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/code/dependencyContext.hpp	Wed Aug 08 15:31:06 2018 +0200
@@ -53,7 +53,7 @@
 
  public:
   nmethodBucket(nmethod* nmethod, nmethodBucket* next) :
-   _nmethod(nmethod), _next(next), _count(1) {}
+   _nmethod(nmethod), _count(1), _next(next) {}
 
   int count()                             { return _count; }
   int increment()                         { _count += 1; return _count; }