summaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authormueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4>2006-08-13 15:04:41 +0000
committermueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4>2006-08-13 15:04:41 +0000
commit1e31ff37a4ad4eeac81e9fa724db5f2451c30242 (patch)
tree1972fe13fa3fa321f13a1489a36ccdf5bd084e77 /gcc/c-common.c
parent79d18c70a68fc547748b065865027e9324d65fd9 (diff)
downloadgcc-1e31ff37a4ad4eeac81e9fa724db5f2451c30242.tar.gz
2006-08-13 Dirk Mueller <dmueller@suse.de>
* c-common.c (strict_aliasing_warning): Fix formatting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116109 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 71f8ce689fd..58c48d88368 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -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)