diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-03-17 00:07:34 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-03-17 00:07:34 +0000 |
commit | 7187fac0f19f75c62f575c9f15f0ed68b7d97810 (patch) | |
tree | 0c6614906f19f881ecd529c3f6bb4d69aab1e8a0 /lib/Driver/Tools.cpp | |
parent | 04a9eb3f0dfcc42b317057e236f73e9b196a2ff8 (diff) |
Driver/ARM: Match GCC behavior in that -msoft-float disables NEON, despite this
not being consistent at all with other parts of the GCC implementation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127777 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 271f02d894..761e5f8b67 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -583,6 +583,13 @@ void Clang::AddARMTargetArgs(const ArgList &Args, } else D.Diag(clang::diag::err_drv_clang_unsupported) << A->getAsString(Args); } + + // Setting -msoft-float effectively disables NEON because of the GCC + // implementation, although the same isn't true of VFP or VFP3. + if (FloatABI == "soft") { + CmdArgs.push_back("-target-feature"); + CmdArgs.push_back("-neon"); + } } void Clang::AddMIPSTargetArgs(const ArgList &Args, |