+2014-11-23 Manuel López-Ibáñez <manu@gcc.gnu.org>
+
+ PR fortran/44054
+ * decl.c (gfc_verify_c_interop_param): Use gfc_error_now_2.
+ (gfc_set_constant_character_len): Use gfc_warning_now_2.
+ * resolve.c (resolve_ordinary_assign): Likewise.
+ * gfortran.h (warn_character_truncation): Do not declare here.
+ * error.c (gfc_format_decoder): Handle %L.
+ * lang.opt (Wcharacter-truncation): Add Var and LangEnabledBy.
+ * options.c (gfc_init_options): Do not handle
+ warn_character_truncation explicitly.
+ (set_Wall): Likewise.
+ (gfc_handle_option): Likewise.
+
2014-11-23 Tobias Burnus <burnus@net-b.de>
* invoke.texi (-Wtabs): Swap -Wtabs/-Wno-tabs now that
{
if (sym->attr.is_bind_c == 0)
{
- gfc_error_now ("Procedure '%s' at %L must have the BIND(C) "
- "attribute to be C interoperable", sym->name,
- &(sym->declared_at));
-
+ gfc_error_now_2 ("Procedure %qs at %L must have the BIND(C) "
+ "attribute to be C interoperable", sym->name,
+ &(sym->declared_at));
return false;
}
else
if (len > slen)
gfc_wide_memset (&s[slen], ' ', len - slen);
- if (gfc_option.warn_character_truncation && slen > len)
- gfc_warning_now ("CHARACTER expression at %L is being truncated "
- "(%d/%d)", &expr->where, slen, len);
+ if (warn_character_truncation && slen > len)
+ gfc_warning_now_2 (OPT_Wcharacter_truncation,
+ "CHARACTER expression at %L is being truncated "
+ "(%d/%d)", &expr->where, slen, len);
/* Apply the standard by 'hand' otherwise it gets cleared for
initializers. */
to handle Fortran specific format specifiers with the following meanings:
%C Current locus (no argument)
+ %L Takes locus argument
*/
static bool
gfc_format_decoder (pretty_printer *pp,
switch (*spec)
{
case 'C':
+ case 'L':
{
static const char *result = "(1)";
- gcc_assert (gfc_current_locus.nextc - gfc_current_locus.lb->line >= 0);
- unsigned int c1 = gfc_current_locus.nextc - gfc_current_locus.lb->line;
+ locus *loc;
+ if (*spec == 'C')
+ loc = &gfc_current_locus;
+ else
+ loc = va_arg (*text->args_ptr, locus *);
+ gcc_assert (loc->nextc - loc->lb->line >= 0);
+ unsigned int offset = loc->nextc - loc->lb->line;
gcc_assert (text->locus);
*text->locus
= linemap_position_for_loc_and_offset (line_table,
- gfc_current_locus.lb->location,
- c1);
+ loc->lb->location,
+ offset);
global_dc->caret_char = '1';
pp_string (pp, result);
return true;
int warn_underflow;
int warn_intrinsic_shadow;
int warn_intrinsics_std;
- int warn_character_truncation;
int warn_array_temp;
int warn_align_commons;
int warn_real_q_constant;
; Documented in C
Wcharacter-truncation
-Fortran Warning
+Fortran Var(warn_character_truncation) Warning LangEnabledBy(Fortran,Wall)
Warn about truncated character expressions
Wcompare-reals
gfc_option.warn_aliasing = 0;
gfc_option.warn_ampersand = 0;
- gfc_option.warn_character_truncation = 0;
gfc_option.warn_array_temp = 0;
gfc_option.warn_c_binding_type = 0;
gfc_option.gfc_warn_conversion = 0;
gfc_option.warn_underflow = setting;
gfc_option.warn_intrinsic_shadow = setting;
gfc_option.warn_intrinsics_std = setting;
- gfc_option.warn_character_truncation = setting;
gfc_option.warn_real_q_constant = setting;
gfc_option.warn_unused_dummy_argument = setting;
gfc_option.warn_target_lifetime = setting;
gfc_option.warn_c_binding_type = value;
break;
- case OPT_Wcharacter_truncation:
- gfc_option.warn_character_truncation = value;
- break;
-
case OPT_Wcompare_reals:
gfc_option.warn_compare_reals = value;
break;
}
if (lhs->ts.type == BT_CHARACTER
- && gfc_option.warn_character_truncation)
+ && warn_character_truncation)
{
if (lhs->ts.u.cl != NULL
&& lhs->ts.u.cl->length != NULL
rlen = mpz_get_si (rhs->ts.u.cl->length->value.integer);
if (rlen && llen && rlen > llen)
- gfc_warning_now ("CHARACTER expression will be truncated "
- "in assignment (%d/%d) at %L",
- llen, rlen, &code->loc);
+ gfc_warning_now_2 (OPT_Wcharacter_truncation,
+ "CHARACTER expression will be truncated "
+ "in assignment (%d/%d) at %L",
+ llen, rlen, &code->loc);
}
/* Ensure that a vector index expression for the lvalue is evaluated