mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8132969: C++11 requires a space between literal and identifier
Reviewed-by: simonis, ctornqvi
This commit is contained in:
parent
4673cb217e
commit
0d46ebff8f
1 changed files with 2 additions and 2 deletions
|
@ -1303,7 +1303,7 @@ void SignatureHandlerLibrary::add(uint64_t fingerprint, address handler) {
|
||||||
if (handler_index < 0) {
|
if (handler_index < 0) {
|
||||||
if (PrintSignatureHandlers && (handler != Interpreter::slow_signature_handler())) {
|
if (PrintSignatureHandlers && (handler != Interpreter::slow_signature_handler())) {
|
||||||
tty->cr();
|
tty->cr();
|
||||||
tty->print_cr("argument handler #%d at "PTR_FORMAT" for fingerprint " UINT64_FORMAT,
|
tty->print_cr("argument handler #%d at " PTR_FORMAT " for fingerprint " UINT64_FORMAT,
|
||||||
_handlers->length(),
|
_handlers->length(),
|
||||||
handler,
|
handler,
|
||||||
fingerprint);
|
fingerprint);
|
||||||
|
@ -1313,7 +1313,7 @@ void SignatureHandlerLibrary::add(uint64_t fingerprint, address handler) {
|
||||||
} else {
|
} else {
|
||||||
if (PrintSignatureHandlers) {
|
if (PrintSignatureHandlers) {
|
||||||
tty->cr();
|
tty->cr();
|
||||||
tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: "PTR_FORMAT", new : "PTR_FORMAT")",
|
tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: " PTR_FORMAT ", new : " PTR_FORMAT ")",
|
||||||
_handlers->length(),
|
_handlers->length(),
|
||||||
fingerprint,
|
fingerprint,
|
||||||
_handlers->at(handler_index),
|
_handlers->at(handler_index),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue