diff options
-rw-r--r-- | include/clang/Driver/Options.td | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index 5d33d70799..a68353a939 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -808,12 +808,15 @@ def mno_ssse3 : Flag<"-mno-ssse3">, Group<m_x86_Features_Group>; def mno_aes : Flag<"-mno-aes">, Group<m_x86_Features_Group>; def mno_avx : Flag<"-mno-avx">, Group<m_x86_Features_Group>; def mno_avx2 : Flag<"-mno-avx2">, Group<m_x86_Features_Group>; +def mno_pclmul : Flag<"-mno-pclmul">, Group<m_x86_Features_Group>; def mno_lzcnt : Flag<"-mno-lzcnt">, Group<m_x86_Features_Group>; def mno_rdrnd : Flag<"-mno-rdrnd">, Group<m_x86_Features_Group>; def mno_bmi : Flag<"-mno-bmi">, Group<m_x86_Features_Group>; def mno_bmi2 : Flag<"-mno-bmi2">, Group<m_x86_Features_Group>; def mno_popcnt : Flag<"-mno-popcnt">, Group<m_x86_Features_Group>; def mno_fma4 : Flag<"-mno-fma4">, Group<m_x86_Features_Group>; +def mno_fma : Flag<"-mno-fma">, Group<m_x86_Features_Group>; +def mno_xop : Flag<"-mno-xop">, Group<m_x86_Features_Group>; def mno_thumb : Flag<"-mno-thumb">, Group<m_Group>; def marm : Flag<"-marm">, Alias<mno_thumb>; @@ -845,12 +848,15 @@ def mssse3 : Flag<"-mssse3">, Group<m_x86_Features_Group>; def maes : Flag<"-maes">, Group<m_x86_Features_Group>; def mavx : Flag<"-mavx">, Group<m_x86_Features_Group>; def mavx2 : Flag<"-mavx2">, Group<m_x86_Features_Group>; +def mpclmul : Flag<"-mpclmul">, Group<m_x86_Features_Group>; def mlzcnt : Flag<"-mlzcnt">, Group<m_x86_Features_Group>; def mrdrnd : Flag<"-mrdrnd">, Group<m_x86_Features_Group>; def mbmi : Flag<"-mbmi">, Group<m_x86_Features_Group>; def mbmi2 : Flag<"-mbmi2">, Group<m_x86_Features_Group>; def mpopcnt : Flag<"-mpopcnt">, Group<m_x86_Features_Group>; def mfma4 : Flag<"-mfma4">, Group<m_x86_Features_Group>; +def mfma : Flag<"-mfma">, Group<m_x86_Features_Group>; +def mxop : Flag<"-mxop">, Group<m_x86_Features_Group>; def mips16 : Flag<"-mips16">, Group<m_Group>; def mno_mips16 : Flag<"-mno-mips16">, Group<m_Group>; def mdsp : Flag<"-mdsp">, Group<m_Group>; |