Remove unused CUDAFatbinaryArgs

This commit is contained in:
Jonas Hahnfeld 2021-11-25 15:04:48 +01:00 committed by jenkins
parent c1a6a8a634
commit f4641c0cb0
2 changed files with 0 additions and 6 deletions

View File

@ -70,9 +70,6 @@ namespace cling {
/// \brief Architecture level of the CUDA gpu. Necessary for the
/// NVIDIA fatbinary tool.
std::string CUDAGpuArch;
/// \brief Contains arguments, which will passed to the nvidia tool
/// fatbinary.
std::vector<std::string> CUDAFatbinaryArgs;
///\brief The remaining arguments to pass to clang.
///

View File

@ -146,9 +146,6 @@ void CompilerOptions::Parse(int argc, const char* const argv[],
case options::OPT_fmodules_cache_path: CachePath = arg->getValue(); break;
case options::OPT_cuda_path_EQ: CUDAPath = arg->getValue(); break;
case options::OPT_cuda_gpu_arch_EQ: CUDAGpuArch = arg->getValue(); break;
case options::OPT_Xcuda_fatbinary:
CUDAFatbinaryArgs.push_back(arg->getValue());
break;
case options::OPT_cuda_device_only:
Language = true;
CUDADevice = true;