diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-01-27 01:06:14 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-01-27 01:06:14 +0000 |
commit | f7b33749d2a686327b8ae249b8eb1ab44770f54b (patch) | |
tree | 1a4355090344e858111d4f7ad4f58537f628de05 | |
parent | 5435fc9739e9ac4baede460cf5e7489886948af5 (diff) |
Support -marm by treating it as an alias for -mno-thumb.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94644 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Driver/Options.td | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index c1b54caf93..b384f90051 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -416,7 +416,10 @@ def mno_sse4a : Flag<"-mno-sse4a">, Group<m_x86_Features_Group>; def mno_sse4 : Flag<"-mno-sse4">, Group<m_x86_Features_Group>; def mno_sse : Flag<"-mno-sse">, Group<m_x86_Features_Group>; def mno_ssse3 : Flag<"-mno-ssse3">, Group<m_x86_Features_Group>; + def mno_thumb : Flag<"-mno-thumb">, Group<m_Group>; +def marm : Flag<"-marm">, Alias<mno_thumb>; + def mno_warn_nonportable_cfstrings : Flag<"-mno-warn-nonportable-cfstrings">, Group<m_Group>; def mpascal_strings : Flag<"-mpascal-strings">, Group<m_Group>; def mred_zone : Flag<"-mred-zone">, Group<m_Group>; |