# HG changeset patch # User goetz # Date 1391088601 -3600 # Node ID 2fcab8ba885a633ddc84877e4508e0344a6467b9 # Parent 3f3c97187f8275c65077b6b0d4a26216228bee63 8033168: PPC64: gcc 4.8 warning in output_c.cpp Summary: fix warnings Reviewed-by: kvn diff -r 3f3c97187f82 -r 2fcab8ba885a src/share/vm/adlc/output_c.cpp --- a/src/share/vm/adlc/output_c.cpp Fri Jan 24 10:23:34 2014 +0100 +++ b/src/share/vm/adlc/output_c.cpp Thu Jan 30 14:30:01 2014 +0100 @@ -2519,7 +2519,7 @@ fprintf(fp,"}\n\n"); } -// Emit late expand function. +// Emit postalloc expand function. void ArchDesc::define_postalloc_expand(FILE *fp, InstructForm &inst) { InsEncode *ins_encode = inst._insencode; @@ -2536,7 +2536,7 @@ // for each parameter specified in the encoding. ins_encode->reset(); const char *ec_name = ins_encode->encode_class_iter(); - assert(ec_name != NULL, "late expand must specify an encoding"); + assert(ec_name != NULL, "Postalloc expand must specify an encoding."); EncClass *encoding = _encode->encClass(ec_name); if (encoding == NULL) { @@ -2549,11 +2549,11 @@ ec_name, encoding->num_args()); } - fprintf(fp, " // Access to ins and operands for late expand.\n"); + fprintf(fp, " // Access to ins and operands for postalloc expand.\n"); const int buflen = 2000; - char idxbuf[buflen]; char *ib = idxbuf; sprintf(ib, ""); - char nbuf [buflen]; char *nb = nbuf; sprintf(nb, ""); - char opbuf [buflen]; char *ob = opbuf; sprintf(ob, ""); + char idxbuf[buflen]; char *ib = idxbuf; idxbuf[0] = '\0'; + char nbuf [buflen]; char *nb = nbuf; nbuf[0] = '\0'; + char opbuf [buflen]; char *ob = opbuf; opbuf[0] = '\0'; encoding->_parameter_type.reset(); encoding->_parameter_name.reset(); @@ -2571,7 +2571,7 @@ // There is no operand for the constanttablebase. } else if (inst.is_noninput_operand(idx)) { globalAD->syntax_err(inst._linenum, - "In %s: you can not pass the non-input %s to a late expand encoding.\n", + "In %s: you can not pass the non-input %s to a postalloc expand encoding.\n", inst._ident, arg_name); } else { ib += sprintf(ib, " unsigned idx_%-5s = idx%d; \t// %s, \t%s\n", @@ -2622,7 +2622,7 @@ fprintf(fp, "}\n\n"); ec_name = ins_encode->encode_class_iter(); - assert(ec_name == NULL, "Late expand may only have one encoding."); + assert(ec_name == NULL, "Postalloc expand may only have one encoding."); } // defineEmit -----------------------------------------------------------------