Fix typo noticed by Chris.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63449 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index 52f3478..fe5e7f8 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -486,7 +486,7 @@
llvm::cl::desc("Store string literals as writable data"));
static llvm::cl::opt<bool>
-NoLaxVectorConversions("fnolax-vector-conversions",
+NoLaxVectorConversions("fno-lax-vector-conversions",
llvm::cl::desc("Disallow implicit conversions between "
"vectors with a different number of "
"elements or different element types"));
diff --git a/test/Sema/typedef-retain.c b/test/Sema/typedef-retain.c
index 641b7ec..b621743 100644
--- a/test/Sema/typedef-retain.c
+++ b/test/Sema/typedef-retain.c
@@ -1,4 +1,4 @@
-// RUN: clang -fsyntax-only -verify %s -fnolax-vector-conversions
+// RUN: clang -fsyntax-only -verify %s -fno-lax-vector-conversions
typedef float float4 __attribute__((vector_size(16)));
typedef int int4 __attribute__((vector_size(16)));