diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2012-07-04 11:52:24 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2012-07-04 11:52:24 +0000 |
commit | 2c7886ddec1e2cee68daee9866637d2e02f434ef (patch) | |
tree | aaa96f38ba3bd007af3d3efb876a1fd04a33a70b /lib/Driver/Tools.cpp | |
parent | a422cd0ed4da8cb5a172498f29bb02065707c6ce (diff) |
Hoist the logic for selecting the Objective-C dispatch method into the runtime
class, from the target. No functionality change, just less duplicated logic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 3b15d123cc..a5e2e401e2 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2467,7 +2467,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, if (objcRuntime.isNonFragile()) { if (!Args.hasFlag(options::OPT_fobjc_legacy_dispatch, options::OPT_fno_objc_legacy_dispatch, - getToolChain().IsObjCLegacyDispatchDefault())) { + objcRuntime.isLegacyDispatchDefaultForArch( + getToolChain().getTriple().getArch()))) { if (getToolChain().UseObjCMixedDispatch()) CmdArgs.push_back("-fobjc-dispatch-method=mixed"); else |