diff options
| author | Joey Gouly <joey.gouly@arm.com> | 2013-09-13 13:48:33 +0000 |
|---|---|---|
| committer | Joey Gouly <joey.gouly@arm.com> | 2013-09-13 13:48:33 +0000 |
| commit | be8c27372a6eb2ff82e9eb55d22d17f711885c3a (patch) | |
| tree | 5dbb81e1d6dc21d2c119655684fbcf94b9f4cf0d /clang/lib/Driver/Tools.cpp | |
| parent | ccd04894c4a5cb6798ad14698f6a71d6e22baeba (diff) | |
| download | bcm5719-llvm-be8c27372a6eb2ff82e9eb55d22d17f711885c3a.tar.gz bcm5719-llvm-be8c27372a6eb2ff82e9eb55d22d17f711885c3a.zip | |
[ARMv8] Change the naming of some options to be more consistent.
Clang side changes for LLVM r190692.
llvm-svn: 190693
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
| -rw-r--r-- | clang/lib/Driver/Tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index eca94b66ef6..19f9c313c2e 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -592,9 +592,9 @@ static void getFPUFeatures(const Driver &D, const Arg *A, const ArgList &Args, Features.push_back("+vfp3"); Features.push_back("-neon"); } else if (FPU == "fp-armv8") { - Features.push_back("+v8fp"); + Features.push_back("+fp-armv8"); } else if (FPU == "neon-fp-armv8") { - Features.push_back("+v8fp"); + Features.push_back("+fp-armv8"); Features.push_back("+neon"); } else if (FPU == "neon") { Features.push_back("+neon"); |

