From 5779e7133d84c5873249bb643d9852f314022f0b Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Sat, 30 Aug 2008 23:50:40 +0000 Subject: 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} From-SVN: r139812 --- gcc/opt-functions.awk | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/opt-functions.awk') diff --git a/gcc/opt-functions.awk b/gcc/opt-functions.awk index a14b8c2..574379b 100644 --- a/gcc/opt-functions.awk +++ b/gcc/opt-functions.awk @@ -71,6 +71,7 @@ function switch_flags (flags) result = result \ test_flag("Common", flags, " | CL_COMMON") \ test_flag("Target", flags, " | CL_TARGET") \ + test_flag("Save", flags, " | CL_SAVE") \ test_flag("Joined", flags, " | CL_JOINED") \ test_flag("JoinedOrMissing", flags, " | CL_JOINED | CL_MISSING_OK") \ test_flag("Separate", flags, " | CL_SEPARATE") \ -- cgit v1.1