diff options
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -3272,8 +3272,10 @@ extern vec<tree, va_gc> **decl_debug_args_insert (tree); #define TREE_OPTIMIZATION_BASE_OPTABS(NODE) \ (OPTIMIZATION_NODE_CHECK (NODE)->optimization.base_optabs) -/* Return a tree node that encapsulates the optimization options in OPTS. */ -extern tree build_optimization_node (struct gcc_options *opts); +/* Return a tree node that encapsulates the optimization options in OPTS + and OPTS_SET. */ +extern tree build_optimization_node (struct gcc_options *opts, + struct gcc_options *opts_set); #define TREE_TARGET_OPTION(NODE) \ (TARGET_OPTION_NODE_CHECK (NODE)->target_option.opts) @@ -3281,8 +3283,10 @@ extern tree build_optimization_node (struct gcc_options *opts); #define TREE_TARGET_GLOBALS(NODE) \ (TARGET_OPTION_NODE_CHECK (NODE)->target_option.globals) -/* Return a tree node that encapsulates the target options in OPTS. */ -extern tree build_target_option_node (struct gcc_options *opts); +/* Return a tree node that encapsulates the target options in OPTS and + OPTS_SET. */ +extern tree build_target_option_node (struct gcc_options *opts, + struct gcc_options *opts_set); extern void prepare_target_option_nodes_for_pch (void); |