Commit a30b9bb5 by Matthias Klose Committed by Matthias Klose

arm.c (arm_mangle_type): Don't warn anymore that 4.4 has changed the `va_list' mangling.

2012-09-21  Matthias Klose  <doko@ubuntu.com>

        * config/arm/arm.c (arm_mangle_type): Don't warn anymore that
        4.4 has changed the `va_list' mangling.

From-SVN: r191610
parent b383e255
2012-09-21 Matthias Klose <doko@ubuntu.com>
* config/arm/arm.c (arm_mangle_type): Don't warn anymore that
4.4 has changed the `va_list' mangling.
2012-09-21 Eric Botcazou <ebotcazou@adacore.com> 2012-09-21 Eric Botcazou <ebotcazou@adacore.com>
PR rtl-optimization/54290 PR rtl-optimization/54290
......
...@@ -25072,16 +25072,7 @@ arm_mangle_type (const_tree type) ...@@ -25072,16 +25072,7 @@ arm_mangle_type (const_tree type)
has to be managled as if it is in the "std" namespace. */ has to be managled as if it is in the "std" namespace. */
if (TARGET_AAPCS_BASED if (TARGET_AAPCS_BASED
&& lang_hooks.types_compatible_p (CONST_CAST_TREE (type), va_list_type)) && lang_hooks.types_compatible_p (CONST_CAST_TREE (type), va_list_type))
{ return "St9__va_list";
static bool warned;
if (!warned && warn_psabi && !in_system_header)
{
warned = true;
inform (input_location,
"the mangling of %<va_list%> has changed in GCC 4.4");
}
return "St9__va_list";
}
/* Half-precision float. */ /* Half-precision float. */
if (TREE_CODE (type) == REAL_TYPE && TYPE_PRECISION (type) == 16) if (TREE_CODE (type) == REAL_TYPE && TYPE_PRECISION (type) == 16)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment