mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8037816: Fix for 8036122 breaks build with Xcode5/clang
Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
This commit is contained in:
parent
563feb9091
commit
305ec3bd3f
293 changed files with 1285 additions and 913 deletions
|
@ -77,6 +77,8 @@
|
|||
#include "c1/c1_Compiler.hpp"
|
||||
#endif
|
||||
|
||||
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
|
||||
|
||||
#ifdef DTRACE_ENABLED
|
||||
|
||||
|
||||
|
@ -2857,7 +2859,7 @@ void InstanceKlass::print_on(outputStream* st) const {
|
|||
st->print(BULLET"instance size: %d", size_helper()); st->cr();
|
||||
st->print(BULLET"klass size: %d", size()); st->cr();
|
||||
st->print(BULLET"access: "); access_flags().print_on(st); st->cr();
|
||||
st->print(BULLET"state: "); st->print_cr(state_names[_init_state]);
|
||||
st->print(BULLET"state: "); st->print_cr("%s", state_names[_init_state]);
|
||||
st->print(BULLET"name: "); name()->print_value_on(st); st->cr();
|
||||
st->print(BULLET"super: "); super()->print_value_on_maybe_null(st); st->cr();
|
||||
st->print(BULLET"sub: ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue