diff options
Diffstat (limited to 'gcc/c/c-parser.c')
-rw-r--r-- | gcc/c/c-parser.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c index 8f61024..84ee576 100644 --- a/gcc/c/c-parser.c +++ b/gcc/c/c-parser.c @@ -9420,7 +9420,7 @@ warn_for_abs (location_t loc, tree fndecl, tree arg) if (SCALAR_FLOAT_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, "using integer absolute value function %qD when " - "argument is of floating point type %qT", + "argument is of floating-point type %qT", fndecl, atype); else if (TREE_CODE (atype) == COMPLEX_TYPE) warning_at (loc, OPT_Wabsolute_value, @@ -9443,16 +9443,16 @@ warn_for_abs (location_t loc, tree fndecl, tree arg) { if (INTEGRAL_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, - "using floating point absolute value function %qD " + "using floating-point absolute value function %qD " "when argument is of integer type %qT", fndecl, atype); else if (DECIMAL_FLOAT_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, - "using floating point absolute value function %qD " - "when argument is of decimal floating point type %qT", + "using floating-point absolute value function %qD " + "when argument is of decimal floating-point type %qT", fndecl, atype); else if (TREE_CODE (atype) == COMPLEX_TYPE) warning_at (loc, OPT_Wabsolute_value, - "using floating point absolute value function %qD when " + "using floating-point absolute value function %qD when " "argument is of complex type %qT", fndecl, atype); else gcc_unreachable (); @@ -9470,7 +9470,7 @@ warn_for_abs (location_t loc, tree fndecl, tree arg) else if (SCALAR_FLOAT_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, "using complex absolute value function %qD when " - "argument is of floating point type %qT", + "argument is of floating-point type %qT", fndecl, atype); else gcc_unreachable (); @@ -9486,17 +9486,17 @@ warn_for_abs (location_t loc, tree fndecl, tree arg) { if (INTEGRAL_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, - "using decimal floating point absolute value " + "using decimal floating-point absolute value " "function %qD when argument is of integer type %qT", fndecl, atype); else if (SCALAR_FLOAT_TYPE_P (atype)) warning_at (loc, OPT_Wabsolute_value, - "using decimal floating point absolute value " - "function %qD when argument is of floating point " + "using decimal floating-point absolute value " + "function %qD when argument is of floating-point " "type %qT", fndecl, atype); else if (TREE_CODE (atype) == COMPLEX_TYPE) warning_at (loc, OPT_Wabsolute_value, - "using decimal floating point absolute value " + "using decimal floating-point absolute value " "function %qD when argument is of complex type %qT", fndecl, atype); else |