forked from OSchip/llvm-project
Add missing flags -fexpensive-optimizations and -minline-all-stringops as noops.
llvm-svn: 192521
This commit is contained in:
parent
de64774b4d
commit
9f70940476
|
@ -437,6 +437,10 @@ def fencoding_EQ : Joined<["-"], "fencoding=">, Group<f_Group>;
|
|||
def ferror_limit_EQ : Joined<["-"], "ferror-limit=">, Group<f_Group>;
|
||||
def fexceptions : Flag<["-"], "fexceptions">, Group<f_Group>, Flags<[CC1Option]>,
|
||||
HelpText<"Enable support for exception handling">;
|
||||
def fexpensive_optimizations : Flag<["-"], "fexpensive-optimizations">,
|
||||
Group<clang_ignored_f_Group>;
|
||||
def fno_expensive_optimizations : Flag<["-"], "fno-expensive-optimizations">,
|
||||
Group<clang_ignored_f_Group>;
|
||||
def fextdirs_EQ : Joined<["-"], "fextdirs=">, Group<f_Group>;
|
||||
def fextended_identifiers : Flag<["-"], "fextended-identifiers">,
|
||||
Group<clang_ignored_f_Group>;
|
||||
|
@ -947,6 +951,8 @@ def mcpu_EQ : Joined<["-"], "mcpu=">, Group<m_Group>;
|
|||
def mdynamic_no_pic : Joined<["-"], "mdynamic-no-pic">, Group<m_Group>;
|
||||
def mfix_and_continue : Flag<["-"], "mfix-and-continue">, Group<clang_ignored_m_Group>;
|
||||
def mieee_fp : Flag<["-"], "mieee-fp">, Group<clang_ignored_m_Group>;
|
||||
def minline_all_stringops : Flag<["-"], "minline-all-stringops">, Group<clang_ignored_m_Group>;
|
||||
def mno_inline_all_stringops : Flag<["-"], "mno-inline-all-stringops">, Group<clang_ignored_m_Group>;
|
||||
def mfloat_abi_EQ : Joined<["-"], "mfloat-abi=">, Group<m_Group>;
|
||||
def mfpmath_EQ : Joined<["-"], "mfpmath=">, Group<m_Group>;
|
||||
def mfpu_EQ : Joined<["-"], "mfpu=">, Group<m_Group>;
|
||||
|
|
Loading…
Reference in New Issue