We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4482d commit a6535b1Copy full SHA for a6535b1
clang/lib/Driver/ToolChains/CommonArgs.cpp
@@ -3173,7 +3173,7 @@ std::optional<StringRef> tools::ParseMPreferVectorWidthOption(
3173
ArgStringList &CmdArgs, bool isCompilerDriver) {
3174
// If this was invoked by the Compiler Driver, we pass through the option
3175
// as-is. Otherwise, if this is the Frontend Driver, we want just the value.
3176
- StringRef Out = (isCompilerDriver) ? "-mprefer-vector-width=" : "";
+ StringRef Out = isCompilerDriver ? "-mprefer-vector-width=" : "";
3177
3178
Arg *A = Args.getLastArg(clang::driver::options::OPT_mprefer_vector_width_EQ);
3179
if (!A)
0 commit comments