diff options
author | Richard Guenther <rguenther@suse.de> | 2009-10-28 14:33:17 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-10-28 14:33:17 +0000 |
commit | f883d997700c6f3d5f14d3ade0a924a9dff118ef (patch) | |
tree | e33e068e9a514d3dde1755cf3bfb4f841f70300d /gcc | |
parent | 68523ddb284e83f64b2fd0249298589bf04389c2 (diff) | |
download | gcc-f883d997700c6f3d5f14d3ade0a924a9dff118ef.zip gcc-f883d997700c6f3d5f14d3ade0a924a9dff118ef.tar.gz gcc-f883d997700c6f3d5f14d3ade0a924a9dff118ef.tar.bz2 |
gimple.c (gimple_get_alias_set): Fix comment typo.
2009-10-28 Richard Guenther <rguenther@suse.de>
* gimple.c (gimple_get_alias_set): Fix comment typo.
From-SVN: r153664
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gimple.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 65ca8c2..d2309d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2009-10-28 Richard Guenther <rguenther@suse.de> + * gimple.c (gimple_get_alias_set): Fix comment typo. + +2009-10-28 Richard Guenther <rguenther@suse.de> + * tree.c (free_lang_data_in_type): Do not call get_alias_set. (free_lang_data): Unconditionally compute alias sets for all standard integer types. Bail out if gate bailed out previously. diff --git a/gcc/gimple.c b/gcc/gimple.c index 24ac0b8..1f80883 100644 --- a/gcc/gimple.c +++ b/gcc/gimple.c @@ -4209,7 +4209,7 @@ gimple_get_alias_set (tree t) With LTO the convenient situation of using `void *' to access and store any pointer type will also become - more appearant (and `void *' is just another pointer-to + more apparent (and `void *' is just another pointer-to incomplete type). Assigning alias-set zero to `void *' and all pointer-to incomplete types is a not appealing solution. Assigning an effective alias-set zero only |