diff options
author | Dirk Mueller <dmueller@suse.de> | 2006-08-13 15:04:41 +0000 |
---|---|---|
committer | Dirk Mueller <mueller@gcc.gnu.org> | 2006-08-13 15:04:41 +0000 |
commit | 3f0a2a47c26e34de5bef5ca82c4d3615b0051560 (patch) | |
tree | 1972fe13fa3fa321f13a1489a36ccdf5bd084e77 /gcc | |
parent | 374701191fa8ca2b3651f66560d2f3d797281235 (diff) | |
download | gcc-3f0a2a47c26e34de5bef5ca82c4d3615b0051560.zip gcc-3f0a2a47c26e34de5bef5ca82c4d3615b0051560.tar.gz gcc-3f0a2a47c26e34de5bef5ca82c4d3615b0051560.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-common.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3646c1..78ecd6a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/c-common.c b/gcc/c-common.c index 71f8ce6..58c48d8 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) |