From: H.J. Lu Date: Mon, 28 Mar 2011 20:40:41 +0000 (+0000) Subject: Fix a typo in -mavx256-split-unaligned-store. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c09d54269fe4fb15dc24fc89690f7f180a374af5;p=gcc.git Fix a typo in -mavx256-split-unaligned-store. 2011-03-28 H.J. Lu * config/i386/i386.c (flag_opts): Fix a typo in -mavx256-split-unaligned-store. From-SVN: r171626 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1de788d77f4..1469c80f1e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-03-28 H.J. Lu + + * config/i386/i386.c (flag_opts): Fix a typo in + -mavx256-split-unaligned-store. + 2011-03-28 Anatoly Sokolov * 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 a4ca762228c..854223898d8 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];