diff options
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]; |