Commit 3f0a2a47 by Dirk Mueller Committed by Dirk Mueller

c-common.c (strict_aliasing_warning): Fix formatting.

2006-08-13  Dirk Mueller  <dmueller@suse.de>

       * c-common.c (strict_aliasing_warning): Fix formatting.

From-SVN: r116109
parent 37470119
2006-08-13 Dirk Mueller <dmueller@suse.de>
* c-common.c (strict_aliasing_warning): Fix formatting.
2006-08-13 Matthias Klose <doko@debian.org> 2006-08-13 Matthias Klose <doko@debian.org>
* doc/invoke.texi: Fix spelling errors. * doc/invoke.texi: Fix spelling errors.
......
...@@ -976,11 +976,11 @@ unsigned_conversion_warning (tree result, tree operand) ...@@ -976,11 +976,11 @@ unsigned_conversion_warning (tree result, tree operand)
/* Print a warning about casts that might indicate violation /* Print a warning about casts that might indicate violation
of strict aliasing rules if -Wstrict-aliasing is used and of strict aliasing rules if -Wstrict-aliasing is used and
strict aliasing mode is in effect. otype is the original strict aliasing mode is in effect. OTYPE is the original
TREE_TYPE of expr, and type the type we're casting to. */ TREE_TYPE of EXPR, and TYPE the type we're casting to. */
void void
strict_aliasing_warning(tree otype, tree type, tree expr) strict_aliasing_warning (tree otype, tree type, tree expr)
{ {
if (flag_strict_aliasing && warn_strict_aliasing if (flag_strict_aliasing && warn_strict_aliasing
&& POINTER_TYPE_P (type) && POINTER_TYPE_P (otype) && POINTER_TYPE_P (type) && POINTER_TYPE_P (otype)
......
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