diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 2008-07-23 10:28:06 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 2008-07-23 10:28:06 +0000 |
commit | ab442df7fb453434d80a779844fe1a10c0c802ab (patch) | |
tree | efd8e61a3d2ff9dcff5eb5bf03e25922191f7df5 /gcc/opt-functions.awk | |
parent | 5295185c3150a8d31685dc44248aa058246bbe73 (diff) | |
download | gcc-ab442df7fb453434d80a779844fe1a10c0c802ab.tar.gz |
Add ability to set target options (ix86 only) and optimization options on a function specific basis
From-SVN: r138075
Diffstat (limited to 'gcc/opt-functions.awk')
-rw-r--r-- | gcc/opt-functions.awk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/opt-functions.awk b/gcc/opt-functions.awk index 213e9497dcf..a14b8c203d5 100644 --- a/gcc/opt-functions.awk +++ b/gcc/opt-functions.awk @@ -128,6 +128,23 @@ function var_type(flags) return "const char *" } +# Return the type of variable that should be associated with the given flags +# for use within a structure. Simple variables are changed to unsigned char +# type instead of int to save space. +function var_type_struct(flags) +{ + if (flag_set_p("UInteger", flags)) + return "int " + else if (!flag_set_p("Joined.*", flags)) { + if (flag_set_p(".*Mask.*", flags)) + return "int " + else + return "unsigned char " + } + else + return "const char *" +} + # Given that an option has flags FLAGS, return an initializer for the # "var_cond" and "var_value" fields of its cl_options[] entry. function var_set(flags) |