[cfe-commits] r94644 - /cfe/trunk/include/clang/Driver/Options.td
Daniel Dunbar
daniel at zuster.org
Tue Jan 26 17:06:14 PST 2010
Author: ddunbar
Date: Tue Jan 26 19:06:14 2010
New Revision: 94644
URL: http://llvm.org/viewvc/llvm-project?rev=94644&view=rev
Log:
Support -marm by treating it as an alias for -mno-thumb.
Modified:
cfe/trunk/include/clang/Driver/Options.td
Modified: cfe/trunk/include/clang/Driver/Options.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=94644&r1=94643&r2=94644&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Tue Jan 26 19:06:14 2010
@@ -416,7 +416,10 @@
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>;
More information about the cfe-commits
mailing list