diff options
author | Sriraman Tallam <tmsriram@google.com> | 2013-10-24 20:26:52 +0000 |
---|---|---|
committer | Sriraman Tallam <tmsriram@gcc.gnu.org> | 2013-10-24 20:26:52 +0000 |
commit | bdd833da13457c8f90ad08f7717dab8e7418baa1 (patch) | |
tree | e15bffb7ee5ea09d34a9a4093f6bb95307eeb07d | |
parent | d73749df2e0097a418ce0f78e3ad2b9ab5d076b2 (diff) | |
download | gcc-bdd833da13457c8f90ad08f7717dab8e7418baa1.zip gcc-bdd833da13457c8f90ad08f7717dab8e7418baa1.tar.gz gcc-bdd833da13457c8f90ad08f7717dab8e7418baa1.tar.bz2 |
cgraph.c (cgraph_fnver_htab): Move GTY((...)) to be before htab_t.
2013-08-24 Sriraman Tallam <tmsriram@google.com>
* cgraph.c (cgraph_fnver_htab): Move GTY((...)) to be before htab_t.
Change param_is to use the struct and not the pointer to the struct.
From-SVN: r204039
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraph.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8348bba..ae0537d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-08-24 Sriraman Tallam <tmsriram@google.com> + + * cgraph.c (cgraph_fnver_htab): Move GTY((...)) to be before htab_t. + Change param_is to use the struct and not the pointer to the struct. + 2013-10-24 Andrew MacLeod <amacleod@redhat.com> * builtins.c (dummy_object, gimplify_va_arg_expr): Move to gimplify.c. diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 3f6c334..52d9ab0 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -138,7 +138,7 @@ bool cpp_implicit_aliases_done; The cgraph_function_version_info has a THIS_NODE field that is the corresponding cgraph_node.. */ -static htab_t GTY((param_is (struct cgraph_function_version_info *))) +static GTY((param_is (struct cgraph_function_version_info))) htab_t cgraph_fnver_htab = NULL; /* Hash function for cgraph_fnver_htab. */ |