mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
d73749df2e
commit
bdd833da13
|
|
@ -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>
|
2013-10-24 Andrew MacLeod <amacleod@redhat.com>
|
||||||
|
|
||||||
* builtins.c (dummy_object, gimplify_va_arg_expr): Move to gimplify.c.
|
* builtins.c (dummy_object, gimplify_va_arg_expr): Move to gimplify.c.
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ bool cpp_implicit_aliases_done;
|
||||||
The cgraph_function_version_info has a THIS_NODE field that is the
|
The cgraph_function_version_info has a THIS_NODE field that is the
|
||||||
corresponding cgraph_node.. */
|
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;
|
cgraph_fnver_htab = NULL;
|
||||||
|
|
||||||
/* Hash function for cgraph_fnver_htab. */
|
/* Hash function for cgraph_fnver_htab. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue