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 8146781 commit 5c3116eCopy full SHA for 5c3116e
clang/lib/Driver/Driver.cpp
@@ -4982,11 +4982,9 @@ class OffloadingActionBuilder final {
4982
// objects together.
4983
if (TC->getTriple().isNVPTX() && NumOfDeviceLibLinked) {
4984
std::string LibSpirvFile;
4985
- if (Args.hasArg(clang::driver::options::OPT_fsycl_libspirv_path_EQ)) {
+ if (Args.hasArg(options::OPT_fsycl_libspirv_path_EQ)) {
4986
auto ProvidedPath =
4987
- Args.getLastArgValue(
4988
- clang::driver::options::OPT_fsycl_libspirv_path_EQ)
4989
- .str();
+ Args.getLastArgValue(options::OPT_fsycl_libspirv_path_EQ).str();
4990
if (llvm::sys::fs::exists(ProvidedPath))
4991
LibSpirvFile = ProvidedPath;
4992
} else {
0 commit comments