diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-30 23:50:40 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-30 23:50:40 +0000 |
commit | 2447005502283065f2232ce09edf1b3c808a1c7f (patch) | |
tree | b3ee120a2ecf25d00fba24415c8566f83135a110 /gcc/c-tree.h | |
parent | ac785357337a7e170d547963987890e6284185b0 (diff) | |
download | gcc-2447005502283065f2232ce09edf1b3c808a1c7f.tar.gz |
Change attribute((option(...))) to attribute((target(...))); Do not allocate tree nodes on x86 for builtins until we generate code for the ISA; Delete hot/cold functions changing optimization; Make C++ support target specific functions; Add #pragma GCC {push_options,pop_options,reset_options} instead of #pragma GCC {target,optimize} {push,reset,pop}
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139812 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index 539254ec8f9..ab8b36b2e32 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -488,6 +488,7 @@ extern void push_parm_decl (const struct c_parm *); extern struct c_declarator *set_array_declarator_inner (struct c_declarator *, struct c_declarator *); extern tree c_builtin_function (tree); +extern tree c_builtin_function_ext_scope (tree); extern void shadow_tag (const struct c_declspecs *); extern void shadow_tag_warned (const struct c_declspecs *, int); extern tree start_enum (struct c_enum_contents *, tree); |