@@ -7766,7 +7766,7 @@ Action *Driver::BuildOffloadingActions(Compilation &C,
77667766 for (StringRef Arch : getOffloadArchs (C, C.getArgs (), Kind, *TC)) {
77677767 TCAndArchs.push_back (std::make_pair (TC, Arch));
77687768 // Check if the InputArg is a preprocessed file that is created by the
7769- // clang -offload-packager .
7769+ // llvm -offload-binary .
77707770 if (InputType == types::TY_PP_CXX &&
77717771 isOffloadBinaryFile (InputArg->getAsString (Args))) {
77727772 // Extract the specific preprocessed file given the current arch
@@ -8187,7 +8187,7 @@ Action *Driver::ConstructPhaseAction(
81878187 auto *ForEach = C.MakeAction <ForEachWrappingAction>(
81888188 TypedExtractIRFilesAction, OutputAction);
81898189 // This final job is mostly a no-op, but we need it to set the Action
8190- // type to Tempfilelist which is expected by clang -offload-packager .
8190+ // type to Tempfilelist which is expected by llvm -offload-binary .
81918191 auto *ExtractBCFiles = C.MakeAction <FileTableTformJobAction>(
81928192 ForEach, types::TY_Tempfilelist, types::TY_Tempfilelist);
81938193 ExtractBCFiles->addExtractColumnTform (FileTableTformJobAction::COL_ZERO,
@@ -9410,7 +9410,7 @@ const char *Driver::GetNamedOutputPath(Compilation &C, const JobAction &JA,
94109410 llvm::replace (BoundArch, ' *' , ' @' );
94119411 }
94129412 // BoundArch may contain ',', which may create strings that interfere with
9413- // the StringMap for the clang -offload-packager input values.
9413+ // the StringMap for the llvm -offload-binary input values.
94149414 std::replace (BoundArch.begin (), BoundArch.end (), ' ,' , ' @' );
94159415
94169416 llvm::PrettyStackTraceString CrashInfo (" Computing output path" );
0 commit comments