diff options
author | Richard Henderson <rth@cygnus.com> | 1998-09-20 12:02:58 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-09-20 12:02:58 -0700 |
commit | 2ba573431ea23d88372e6c40a7652046d8afbd54 (patch) | |
tree | b4448b05bc5b4459d2016f66d11d33af836c5629 /gcc/c-common.c | |
parent | 899f1ed6980f803397d2bc6a1efc6a406be4a37a (diff) | |
download | gcc-2ba573431ea23d88372e6c40a7652046d8afbd54.zip gcc-2ba573431ea23d88372e6c40a7652046d8afbd54.tar.gz gcc-2ba573431ea23d88372e6c40a7652046d8afbd54.tar.bz2 |
tree.c (new_alias_set): New function.
* tree.c (new_alias_set): New function.
* tree.h (new_alias_set): Declare it.
* c-common.c (c_get_alias_set): Use it.
From-SVN: r22504
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index a5f738b..5879a85 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -2984,7 +2984,6 @@ int c_get_alias_set (t) tree t; { - static int next_set = 0; tree type; if (t == error_mark_node) @@ -3060,6 +3059,6 @@ c_get_alias_set (t) /* TYPE is something we haven't seen before. Put it in a new alias set. */ - TYPE_ALIAS_SET (type) = ++next_set; + TYPE_ALIAS_SET (type) = new_alias_set (); return TYPE_ALIAS_SET (type); } |