aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.3/gcc/flags.h')
-rw-r--r--gcc-4.4.3/gcc/flags.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc-4.4.3/gcc/flags.h b/gcc-4.4.3/gcc/flags.h
index 57ea8c0c4..9507d2b94 100644
--- a/gcc-4.4.3/gcc/flags.h
+++ b/gcc-4.4.3/gcc/flags.h
@@ -399,6 +399,16 @@ enum warn_strict_overflow_code
WARN_STRICT_OVERFLOW_MAGNITUDE = 5
};
+/* Math functions that the ffvpt-pass will profile and optimize. */
+struct ffvpt_options_s
+{
+ bool exp_set;
+ bool log_set;
+ bool pow_set;
+ bool sqrt_set;
+};
+extern struct ffvpt_options_s ffvpt_options;
+
/* Whether to emit an overflow warning whose code is C. */
#define issue_strict_overflow_warning(c) (warn_strict_overflow >= (int) (c))