mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
Need to add a space between macro identifier and string literal Reviewed-by: stefank, dholmes, kbarrett
This commit is contained in:
parent
912d770499
commit
304b59b0c8
85 changed files with 462 additions and 462 deletions
|
@ -93,10 +93,10 @@ void ThreadLocalAllocBuffer::record_slow_allocation(size_t obj_size) {
|
|||
|
||||
if (PrintTLAB && Verbose) {
|
||||
Thread* thrd = myThread();
|
||||
gclog_or_tty->print("TLAB: %s thread: "INTPTR_FORMAT" [id: %2d]"
|
||||
" obj: "SIZE_FORMAT
|
||||
" free: "SIZE_FORMAT
|
||||
" waste: "SIZE_FORMAT"\n",
|
||||
gclog_or_tty->print("TLAB: %s thread: " INTPTR_FORMAT " [id: %2d]"
|
||||
" obj: " SIZE_FORMAT
|
||||
" free: " SIZE_FORMAT
|
||||
" waste: " SIZE_FORMAT "\n",
|
||||
"slow", p2i(thrd), thrd->osthread()->thread_id(),
|
||||
obj_size, free(), refill_waste_limit());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue