diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2011-03-28 20:40:41 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2011-03-28 13:40:41 -0700 |
commit | c09d54269fe4fb15dc24fc89690f7f180a374af5 (patch) | |
tree | 6b069fdaa075a76f139d835e9a3d2a1b049db00c /gcc | |
parent | 9eaa7740ba3111958a29fc4d16f1ba53718ec1a4 (diff) | |
download | gcc-c09d54269fe4fb15dc24fc89690f7f180a374af5.zip gcc-c09d54269fe4fb15dc24fc89690f7f180a374af5.tar.gz gcc-c09d54269fe4fb15dc24fc89690f7f180a374af5.tar.bz2 |
Fix a typo in -mavx256-split-unaligned-store.
2011-03-28 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (flag_opts): Fix a typo in
-mavx256-split-unaligned-store.
From-SVN: r171626
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1de788d..1469c80 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-03-28 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (flag_opts): Fix a typo in + -mavx256-split-unaligned-store. + 2011-03-28 Anatoly Sokolov <aesok@post.ru> * config/h8300/h8300.h (FUNCTION_VALUE_REGNO_P, FUNCTION_VALUE, diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a4ca762..8542238 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3131,7 +3131,7 @@ ix86_target_string (int isa, int flags, const char *arch, const char *tune, { "-m8bit-idiv", MASK_USE_8BIT_IDIV }, { "-mvzeroupper", MASK_VZEROUPPER }, { "-mavx256-split-unaligned-load", MASK_AVX256_SPLIT_UNALIGNED_LOAD}, - { "-mavx256-split-unaligned-stroe", MASK_AVX256_SPLIT_UNALIGNED_STORE}, + { "-mavx256-split-unaligned-store", MASK_AVX256_SPLIT_UNALIGNED_STORE}, }; const char *opts[ARRAY_SIZE (isa_opts) + ARRAY_SIZE (flag_opts) + 6][2]; |