mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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
|
@ -2018,9 +2018,9 @@ void Method::print_on(outputStream* st) const {
|
|||
assert(is_method(), "must be method");
|
||||
st->print_cr("%s", internal_name());
|
||||
// get the effect of PrintOopAddress, always, for methods:
|
||||
st->print_cr(" - this oop: "INTPTR_FORMAT, (intptr_t)this);
|
||||
st->print_cr(" - this oop: " INTPTR_FORMAT, (intptr_t)this);
|
||||
st->print (" - method holder: "); method_holder()->print_value_on(st); st->cr();
|
||||
st->print (" - constants: "INTPTR_FORMAT" ", (address)constants());
|
||||
st->print (" - constants: " INTPTR_FORMAT " ", (address)constants());
|
||||
constants()->print_value_on(st); st->cr();
|
||||
st->print (" - access: 0x%x ", access_flags().as_int()); access_flags().print_on(st); st->cr();
|
||||
st->print (" - name: "); name()->print_value_on(st); st->cr();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue