diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-01-22 19:38:32 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-01-22 19:38:32 +0000 |
commit | b2e2157f905b0b6e27f1d3f5e1f38778c6731813 (patch) | |
tree | 201183ac8a70a62138d5ca578fe973fd9edc09f7 /lib/Frontend/CompilerInvocation.cpp | |
parent | d6ec47363870cefac1c8d136a5011abbf3a4a786 (diff) |
[ms-inline asm] Remove the -fenable-experimental-ms-inline-asm flag. MS-style
inline assembly can be enable with -fasm-blocks or -fms-extensions alone.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index a16b822d23..90ace3f1dc 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -1265,8 +1265,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, Opts.FastMath = Args.hasArg(OPT_ffast_math); Opts.FiniteMathOnly = Args.hasArg(OPT_ffinite_math_only); - Opts.EmitMicrosoftInlineAsm = Args.hasArg(OPT_fenable_experimental_ms_inline_asm); - Opts.RetainCommentsFromSystemHeaders = Args.hasArg(OPT_fretain_comments_from_system_headers); |