hotspot/src/share/vm/adlc/formssel.cpp
changeset 30239 dc83236ebb28
parent 28954 7dda6c26cc98
child 30248 5c6dacbd17ae
--- a/hotspot/src/share/vm/adlc/formssel.cpp	Mon Apr 13 23:04:02 2015 -0700
+++ b/hotspot/src/share/vm/adlc/formssel.cpp	Wed Apr 15 09:34:46 2015 +0200
@@ -3392,7 +3392,7 @@
 // Count occurrences of operands names in the leaves of the instruction
 // match rule.
 void MatchNode::count_instr_names( Dict &names ) {
-  if( !this ) return;
+  if( this == NULL ) return;
   if( _lChild ) _lChild->count_instr_names(names);
   if( _rChild ) _rChild->count_instr_names(names);
   if( !_lChild && !_rChild ) {