summaryrefslogtreecommitdiff
path: root/gcc/tree-core.h
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2014-01-07 07:47:57 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2014-01-07 07:47:57 +0000
commit62402de36bad85fa6b75b599cdc7a8703c6414eb (patch)
treebbca118b0ada564f8f007b3c255dd027f45e855f /gcc/tree-core.h
parent05736a79fd6ab14415d65b494afd44e74cb96e3e (diff)
downloadgcc-62402de36bad85fa6b75b599cdc7a8703c6414eb.tar.gz
PR pch/59436
* tree-core.h (struct tree_optimization_option): Change optabs type from unsigned char * to void *. * optabs.c (init_tree_optimization_optabs): Adjust TREE_OPTIMIZATION_OPTABS initialization. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206383 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-core.h')
-rw-r--r--gcc/tree-core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h
index 0a41b862bdc..361fd907209 100644
--- a/gcc/tree-core.h
+++ b/gcc/tree-core.h
@@ -1550,7 +1550,7 @@ struct GTY(()) tree_optimization_option {
/* Target optabs for this set of optimization options. This is of
type `struct target_optabs *'. */
- unsigned char *GTY ((atomic)) optabs;
+ void *GTY ((atomic)) optabs;
/* The value of this_target_optabs against which the optabs above were
generated. */