Remaining space between literal and identifier - issue

Baesken, Matthias matthias.baesken at sap.com
Mon Aug 3 14:05:09 UTC 2015


Hello, in

"8081202 C++11 requires a space between literal and identifier", see

http://mail.openjdk.java.net/pipermail/hotspot-dev/2015-May/018665.html

a number of places in hotspot coding with missing spaces between literals and identifiers were already fixed.

When experimenting with Visual Studio 2015 (which refuses compiling such code) , I noticed that this fix is missing here :

hotspot/src/share/vm/interpreter/interpreterRuntime.cpp

The following small diff is fixing the remaining issue.


1306c1306
<       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,
1316c1316
<       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 ")",


Could you please add  the small fix ?

Thanks, Matthias


More information about the hotspot-dev mailing list