From: Eric Fiselier Date: Wed, 7 Feb 2018 19:17:03 +0000 (+0000) Subject: Fix r324498: the commit removed the '-' before the disable-llvm-verifier flag X-Git-Tag: llvmorg-7.0.0-rc1~13437 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cca7dddcd317be425a3d16fb8d5fba4688998c4b;p=platform%2Fupstream%2Fllvm.git Fix r324498: the commit removed the '-' before the disable-llvm-verifier flag llvm-svn: 324501 --- diff --git a/clang/lib/Driver/ToolChains/Clang.cpp b/clang/lib/Driver/ToolChains/Clang.cpp index e58ae81..ad29119 100644 --- a/clang/lib/Driver/ToolChains/Clang.cpp +++ b/clang/lib/Driver/ToolChains/Clang.cpp @@ -3274,7 +3274,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, // Disable the verification pass in -asserts builds. if (!IsAssertBuild) - CmdArgs.push_back("disable-llvm-verifier"); + CmdArgs.push_back("-disable-llvm-verifier"); // Discard value names in assert builds unless otherwise specified. if (const Arg *A = Args.getLastArg(options::OPT_fdiscard_value_names,