src/share/vm/adlc/output_h.cpp

changeset 3316
f03a3c8bd5e5
parent 3051
11211f7cb5a0
child 3969
1d7922586cf6
     1.1 --- a/src/share/vm/adlc/output_h.cpp	Mon Nov 21 00:57:43 2011 -0800
     1.2 +++ b/src/share/vm/adlc/output_h.cpp	Wed Sep 14 09:22:51 2011 +0200
     1.3 @@ -1720,6 +1720,16 @@
     1.4        }
     1.5      }
     1.6  
     1.7 +    // flag: if this instruction is implemented with a call
     1.8 +    if ( instr->_has_call ) {
     1.9 +      if ( node_flags_set ) {
    1.10 +        fprintf(fp," | Flag_has_call");
    1.11 +      } else {
    1.12 +        fprintf(fp,"init_flags(Flag_has_call");
    1.13 +        node_flags_set = true;
    1.14 +      }
    1.15 +    }
    1.16 +
    1.17      if ( node_flags_set ) {
    1.18        fprintf(fp,"); ");
    1.19      }

mercurial