c-common.c (strict_aliasing_warning): Fix formatting.
authorDirk Mueller <dmueller@suse.de>
Sun, 13 Aug 2006 15:04:41 +0000 (15:04 +0000)
committerDirk Mueller <mueller@gcc.gnu.org>
Sun, 13 Aug 2006 15:04:41 +0000 (15:04 +0000)
2006-08-13  Dirk Mueller  <dmueller@suse.de>

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

From-SVN: r116109

gcc/ChangeLog
gcc/c-common.c

index d3646c16e970e2c87452b7385cd05c5d29af35e9..78ecd6a657556a2f63b9d2db5d4968529cfc12f3 100644 (file)
@@ -1,3 +1,7 @@
+2006-08-13  Dirk Mueller  <dmueller@suse.de>
+
+       * c-common.c (strict_aliasing_warning): Fix formatting.
+
 2006-08-13  Matthias Klose  <doko@debian.org>
 
        * doc/invoke.texi: Fix spelling errors.
index 71f8ce689fd5a085f14a6e6b03742c7c48cd4929..58c48d883681d66ea2b1c2bdd79810d1c9daf0e5 100644 (file)
@@ -976,11 +976,11 @@ unsigned_conversion_warning (tree result, tree operand)
 
 /* Print a warning about casts that might indicate violation
    of strict aliasing rules if -Wstrict-aliasing is used and
-   strict aliasing mode is in effect. otype is the original
-   TREE_TYPE of expr, and type the type we're casting to. */
+   strict aliasing mode is in effect. OTYPE is the original
+   TREE_TYPE of EXPR, and TYPE the type we're casting to. */
 
 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
       && POINTER_TYPE_P (type) && POINTER_TYPE_P (otype)