diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-03-09 15:39:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-03-09 15:39:08 +0000 |
commit | 7b14026640d76145c4a9a9ac3b2e647bb49651f8 (patch) | |
tree | 2bbd1fb7d0ccf344116e896b7e23ad4b70337dc4 /lib/Frontend/CompilerInvocation.cpp | |
parent | 15debc31f27e35acd9fa1956cefc0294f4e13cb1 (diff) |
[Basic] Rename LangOptions::NoInline to NoInlineDefine, to make things a bit
more obvious.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index 8d72991890..8900906b17 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -2000,7 +2000,7 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, // inlining enabled. // // FIXME: This is affected by other options (-fno-inline). - Opts.NoInline = !Opt; + Opts.NoInlineDefine = !Opt; Opts.FastMath = Args.hasArg(OPT_ffast_math); |