src/hotspot/share/ci/bcEscapeAnalyzer.cpp
changeset 53199 11464bf82dce
parent 53198 8663bd437bb8
child 54052 a2d3ca8062b9
--- a/src/hotspot/share/ci/bcEscapeAnalyzer.cpp	Mon Jan 07 09:17:08 2019 -0500
+++ b/src/hotspot/share/ci/bcEscapeAnalyzer.cpp	Mon Jan 07 10:41:29 2019 -0500
@@ -79,7 +79,6 @@
   void add_unknown()                    { _bits = UNKNOWN; }
   void add_allocated()                  { _bits = ALLOCATED; }
   void set_union(const ArgumentMap &am)     { _bits |= am._bits; }
-  void set_intersect(const ArgumentMap &am) { _bits |= am._bits; }
   void set_difference(const ArgumentMap &am) { _bits &=  ~am._bits; }
   void operator=(const ArgumentMap &am) { _bits = am._bits; }
   bool operator==(const ArgumentMap &am) { return _bits == am._bits; }