diff options
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index e63ef840af9..ec8ff4e0f7c 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1310,7 +1310,7 @@ pushdecl (tree x) /* error_mark_node is 0 for a while during initialization! */ { t = 0; - error ("%J'%D' used prior to declaration", x, x); + error ("%q+D used prior to declaration", x); } /* If we're naming a hitherto-unnamed type, set its TYPE_NAME @@ -1682,12 +1682,12 @@ poplevel (int keep, int reverse, int functionbody) if (DECL_INITIAL (label) == 0) { - error ("%Jlabel '%D' used but not defined", label, label); + error ("label %q+D used but not defined", label); /* Avoid crashing later. */ define_label (input_location, DECL_NAME (label)); } else if (warn_unused[UNUSED_LABEL] && !TREE_USED (label)) - warning (0, "%Jlabel '%D' defined but not used", label, label); + warning (0, "label %q+D defined but not used", label); IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0; /* Put the labels into the "variables" of the @@ -1815,8 +1815,8 @@ force_poplevels (int start_pc) while (current_binding_level->start_pc > start_pc) { if (pedantic && current_binding_level->start_pc > start_pc) - warning (0, "%JIn %D: overlapped variable and exception ranges at %d", - current_function_decl, current_function_decl, + warning (0, "In %+D: overlapped variable and exception ranges at %d", + current_function_decl, current_binding_level->start_pc); poplevel (1, 0, 0); } @@ -1887,8 +1887,8 @@ give_name_to_locals (JCF *jcf) tree decl = build_decl (VAR_DECL, name, type); if (end_pc > DECL_CODE_LENGTH (current_function_decl)) { - warning (0, "%Jbad PC range for debug info for local '%D'", - decl, decl); + warning (0, "bad PC range for debug info for local %q+D", + decl); end_pc = DECL_CODE_LENGTH (current_function_decl); } |