src/hotspot/share/opto/matcher.cpp
changeset 52494 710e5a66a64e
parent 51566 904cf5407ac7
child 52627 e7d8ea5bfc8f
--- a/src/hotspot/share/opto/matcher.cpp	Mon Nov 12 08:33:59 2018 -0800
+++ b/src/hotspot/share/opto/matcher.cpp	Mon Nov 12 22:00:07 2018 +0100
@@ -1209,7 +1209,9 @@
   // Allocate a private array of RegMasks.  These RegMasks are not shared.
   msfpt->_in_rms = NEW_RESOURCE_ARRAY( RegMask, cnt );
   // Empty them all.
-  memset( msfpt->_in_rms, 0, sizeof(RegMask)*cnt );
+  for (uint i = 0; i < cnt; i++) {
+    msfpt->_in_rms[i] = RegMask();
+  }
 
   // Do all the pre-defined non-Empty register masks
   msfpt->_in_rms[TypeFunc::ReturnAdr] = _return_addr_mask;