src/share/vm/adlc/output_c.cpp

changeset 3310
6729bbc1fcd6
parent 3051
11211f7cb5a0
child 3317
db2e64ca2d5a
     1.1 --- a/src/share/vm/adlc/output_c.cpp	Mon Nov 14 18:38:03 2011 -0800
     1.2 +++ b/src/share/vm/adlc/output_c.cpp	Wed Nov 16 01:39:50 2011 -0800
     1.3 @@ -2585,9 +2585,9 @@
     1.4    // Output instruction's emit prototype
     1.5    fprintf(fp, "void %sNode::eval_constant(Compile* C) {\n", inst._ident);
     1.6  
     1.7 -  // For ideal jump nodes, allocate a jump table.
     1.8 +  // For ideal jump nodes, add a jump-table entry.
     1.9    if (inst.is_ideal_jump()) {
    1.10 -    fprintf(fp, "  _constant = C->constant_table().allocate_jump_table(this);\n");
    1.11 +    fprintf(fp, "  _constant = C->constant_table().add_jump_table(this);\n");
    1.12    }
    1.13  
    1.14    // If user did not define an encode section,

mercurial