hotspot/src/share/vm/adlc/output_h.cpp
changeset 11196 a310a659c580
parent 10266 2ea344c79e33
child 13391 30245956af37
--- a/hotspot/src/share/vm/adlc/output_h.cpp	Mon Nov 21 00:57:43 2011 -0800
+++ b/hotspot/src/share/vm/adlc/output_h.cpp	Wed Sep 14 09:22:51 2011 +0200
@@ -1720,6 +1720,16 @@
       }
     }
 
+    // flag: if this instruction is implemented with a call
+    if ( instr->_has_call ) {
+      if ( node_flags_set ) {
+        fprintf(fp," | Flag_has_call");
+      } else {
+        fprintf(fp,"init_flags(Flag_has_call");
+        node_flags_set = true;
+      }
+    }
+
     if ( node_flags_set ) {
       fprintf(fp,"); ");
     }