diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-03-06 21:17:19 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-03-06 21:17:19 +0000 |
commit | 634a4b1b045b13e7ddfa57934cf2b85d4348f77f (patch) | |
tree | 0e734d1c0bdcc0189524798052ce07286d117493 /lib/Driver/Tools.cpp | |
parent | 7ba87f38462dde08e4962936a7612b7869e06c0f (diff) |
[driver] What was implemented in r152130 was actually -fno-inline-functions, not
-fno-inline.
Part of rdar://10972766
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 076311a78e..1420e895a1 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2168,8 +2168,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, false)) CmdArgs.push_back("-fgnu89-inline"); - if (Args.hasArg(options::OPT_fno_inline)) - CmdArgs.push_back("-fno-inline"); + if (Args.hasArg(options::OPT_fno_inline_functions)) + CmdArgs.push_back("-fno-inline-functions"); // -fobjc-nonfragile-abi=0 is default. ObjCRuntime objCRuntime; |