diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2015-11-08 18:33:42 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2015-11-08 18:33:42 +0000 |
commit | ee45a32dae253f7daa966573eb8cb64b2cf7bf52 (patch) | |
tree | cf927ff52a6d5ba28290472db09363fe67a835d6 /gcc/flag-types.h | |
parent | eb11eb157cf07500e2915da8a72f2f3a501cc5ae (diff) | |
download | gcc-ee45a32dae253f7daa966573eb8cb64b2cf7bf52.tar.gz |
Merge of the scalar-storage-order branch.
From-SVN: r229965
Diffstat (limited to 'gcc/flag-types.h')
-rw-r--r-- | gcc/flag-types.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/flag-types.h b/gcc/flag-types.h index 6301cea4807..88a760c5d4e 100644 --- a/gcc/flag-types.h +++ b/gcc/flag-types.h @@ -165,7 +165,6 @@ enum stack_check_type /* Names for the different levels of -Wstrict-overflow=N. The numeric values here correspond to N. */ - enum warn_strict_overflow_code { /* Overflow warning that should be issued with -Wall: a questionable @@ -195,6 +194,13 @@ enum fp_contract_mode { FP_CONTRACT_FAST = 2 }; +/* Scalar storage order kind. */ +enum scalar_storage_order_kind { + SSO_NATIVE = 0, + SSO_BIG_ENDIAN, + SSO_LITTLE_ENDIAN +}; + /* Vectorizer cost-model. */ enum vect_cost_model { VECT_COST_MODEL_UNLIMITED = 0, @@ -203,7 +209,6 @@ enum vect_cost_model { VECT_COST_MODEL_DEFAULT = 3 }; - /* Different instrumentation modes. */ enum sanitize_code { /* AddressSanitizer. */ |