[ARMv8] Change the naming of some options to be more consistent.
Clang side changes for LLVM r190692.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190693 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp
index eca94b6..19f9c31 100644
--- a/lib/Driver/Tools.cpp
+++ b/lib/Driver/Tools.cpp
@@ -592,9 +592,9 @@
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");