diff options
author | H.J. Lu <hjl@gcc.gnu.org> | 2007-09-09 16:37:42 -0700 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2007-09-09 16:37:42 -0700 |
commit | 4e9d897d96c3e95f9be5a4b7f70ac0e9f3f9b1ad (patch) | |
tree | 589cb48597500689a835e34e9340a0d1b7e4fa7c /gcc/config | |
parent | b2ec1738df672b44576efb62f57dabc381eef753 (diff) | |
download | gcc-4e9d897d96c3e95f9be5a4b7f70ac0e9f3f9b1ad.zip gcc-4e9d897d96c3e95f9be5a4b7f70ac0e9f3f9b1ad.tar.gz gcc-4e9d897d96c3e95f9be5a4b7f70ac0e9f3f9b1ad.tar.bz2 |
i386.h (ix86_tune_indices): Rename X86_USE_VECTOR_CONVERTS to X86_TUNE_USE_VECTOR_CONVERTS.
2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.h (ix86_tune_indices): Rename
X86_USE_VECTOR_CONVERTS to X86_TUNE_USE_VECTOR_CONVERTS.
(TARGET_USE_VECTOR_CONVERTS): Updated.
* config/i386/i386.c: Likewise.
From-SVN: r128313
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index c01198b..640e9c0 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1259,8 +1259,8 @@ unsigned int ix86_tune_features[X86_TUNE_LAST] = { replacement is long decoded, so this split helps here as well. */ m_K6, - /* X86_USE_VECTOR_CONVERTS: Preffer vector packed SSE conversion from - integer to FP. */ + /* X86_TUNE_USE_VECTOR_CONVERTS: Preffer vector packed SSE conversion + from integer to FP. */ m_AMDFAM10, }; diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 4f8a531..e18e90f 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -257,7 +257,7 @@ enum ix86_tune_indices { X86_TUNE_MOVE_M1_VIA_OR, X86_TUNE_NOT_UNPAIRABLE, X86_TUNE_NOT_VECTORMODE, - X86_USE_VECTOR_CONVERTS, + X86_TUNE_USE_VECTOR_CONVERTS, X86_TUNE_LAST }; @@ -338,7 +338,7 @@ extern unsigned int ix86_tune_features[X86_TUNE_LAST]; #define TARGET_MOVE_M1_VIA_OR ix86_tune_features[X86_TUNE_MOVE_M1_VIA_OR] #define TARGET_NOT_UNPAIRABLE ix86_tune_features[X86_TUNE_NOT_UNPAIRABLE] #define TARGET_NOT_VECTORMODE ix86_tune_features[X86_TUNE_NOT_VECTORMODE] -#define TARGET_USE_VECTOR_CONVERTS ix86_tune_features[X86_USE_VECTOR_CONVERTS] +#define TARGET_USE_VECTOR_CONVERTS ix86_tune_features[X86_TUNE_USE_VECTOR_CONVERTS] /* Feature tests against the various architecture variations. */ enum ix86_arch_indices { |